using SqlSugar; namespace MES.Service.Modes; /// /// MES工厂日期实体 /// [SugarTable("MES_FactoryDate")] public class MesFactoryDate { /// /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// 单据状态 [SugarColumn(ColumnName = "FDocumentStatus")] public string? FDocumentStatus { get; set; } /// 是否禁用 [SugarColumn(ColumnName = "FForbidStatus")] public string? FForbidStatus { get; set; } /// ERP主键 [SugarColumn(ColumnName = "ErpId")] public string? ErpId { get; set; } /// 序号 [SugarColumn(ColumnName = "Seq")] public string? Seq { get; set; } /// 组织机构Id [SugarColumn(ColumnName = "OrgId")] public string? OrgId { get; set; } /// 日期 [SugarColumn(ColumnName = "FactoryDate")] public string? FactoryDate { get; set; } /// 日期类型 [SugarColumn(ColumnName = "DateType")] public string? DateType { get; set; } /// 是否生产 [SugarColumn(ColumnName = "IsWork")] public string? IsWork { get; set; } /// 日期内码 [SugarColumn(ColumnName = "InterId")] public string? InterId { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }