using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_HollandMapExplain : EntityModel
{
///
/// 标签
///
public string Tag { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 基本属性特征
///
public string BaseProperty { get; set; }
///
/// 职业特征
///
public string OccupationProperty { get; set; }
///
///典型职业
///
public string Occupation { get; set; }
}
}