using DataTransmission.Enum;
using SqlSugar;
using System.ComponentModel;
namespace SnapshotWinFormsApp.Entities.NewHotline;
///
/// 区域从业人员
///
[SugarTable("practitioner")]
[Description("区域从业人员")]
public class Practitioner : FullStateEntity
{
///
/// 名字
///
[SugarColumn(ColumnDescription = "姓名")]
public string Name { get; set; }
///
/// 区域Id
///
[SugarColumn(ColumnDescription = "区域Id")]
public string SystemAreaId { get; set; }
///
/// 区域名称
///
[SugarColumn(ColumnDescription = "区域名称")]
public string SystemAreaName { get; set; }
///
/// 详细街道
///
[SugarColumn(ColumnDescription = "街道")]
public string Street { get; set; }
///
/// 电话
///
[SugarColumn(ColumnDescription = "电话")]
public string PhoneNumber { get; set; }
///
/// 性别
///
public EGender Gender { get; set; }
}