using HH.WMS.Entitys.Common; using MongoDB.Bson; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Autobom { public class TN_AB_B_WORK_AREA_PROEntity { [JsonIgnore] public ObjectId _id { get; set; } /// /// 主键 /// public string CN_GUID { get; set; } public string CN_S_TYPE_CODE { get; set; } public string CN_S_START_AREA_CODE { get; set; } public string CN_S_END_AREA_CODE { get; set; } public string CN_S_START_AREA_TYPE { get; set; } public string CN_S_END_AREA_TYPE { get; set; } public string CN_C_IS_USE { get; set; } /// /// 创建人 /// public string CN_S_CREATOR { get; set; } /// /// 创建人姓名 /// public string CN_S_CREATOR_BY { get; set; } /// /// 创建日期 /// public DateTime? CN_T_CREATE { get; set; } /// /// 修改人 /// public string CN_S_MODIFY { get; set; } /// /// 修改人名称 /// public string CN_S_MODIFY_BY { get; set; } /// /// 修改日期 /// public DateTime? CN_T_MODIFY { get; set; } /// /// 流程编号 /// public string CN_S_PRO_CODE { get; set; } private string _cn_c_is_auto = "N"; /// /// 是否自动化 (Y/N) /// public string CN_C_IS_AUTO { get { return _cn_c_is_auto; } set { _cn_c_is_auto = value; } } public int CN_N_PRIORITY { get; set; } /// /// /// public string CN_S_EXPRESS { get; set; } } }