using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Common.MagicModel { /// /// 存建模固有字段值 /// public class MagicDefaultEntity { /// /// 主键GUID 全局唯一 /// public string CN_GUID { get; set; } /// /// 状态 初始化为新建 /// public string CN_S_STATUS { 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_DEPARTMENT { get; set; } /// /// 所属机构 /// public string CN_S_ORGAN { get; set; } /// /// 创建方式 手工 系统 /// public string CN_S_CREATE_TYPE { get; set; } /// /// 来源 AUTOBOM PLM /// public string CN_S_FROM { get; set; } /// /// 修改人 /// [Property("Edit")] public string CN_S_MODIFY { get; set; } /// /// 修改人名称 /// [Property("Edit")] public string CN_S_MODIFY_BY { get; set; } /// /// 修改时间 /// [Property("Edit")] public DateTime CN_T_MODIFY { get; set; } } public class Property : System.Attribute { public string Value { get; set; } public Property(string Value) { this.Value = Value; } } }