using JNPF.Common.Contracts; using SqlSugar; namespace Tnb.ProductionMgr.Entities.Entity { /// /// erp扩展字段 /// [SugarTable("erp_extend_field")] public class ErpExtendField: BaseEntity { /// /// 天益表名 /// public string table_name { get; set; } /// /// 天益表id /// public string table_id { get; set; } /// /// 机构id /// public string org_id { get; set; } /// /// erp表体行号 /// public int erp_lineno { get; set; } /// /// 工单pk值 /// public string erp_mo_pk { get; set; } /// /// 表体pk值 /// public string erp_line_pk { get; set; } public DateTime create_time { get; set; } } }