using SqlSugar; namespace MES.Service.Modes; /// /// 物料类型 /// [SugarTable("MES_ITEM_TYPE")] public class MesItemType { /// /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// ID /// [SugarColumn(ColumnName = "id")] public decimal Id { get; set; } /// /// 类型编码 /// [SugarColumn(ColumnName = "tcode")] public string? Tcode { get; set; } /// /// 类型名称 /// [SugarColumn(ColumnName = "tname")] public string? Tname { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string? Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName = "lastupdate_by")] public string? LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// [SugarColumn(ColumnName = "company")] public string? Company { get; set; } /// /// [SugarColumn(ColumnName = "factory")] public string? Factory { get; set; } /// /// IQC分类 /// [SugarColumn(ColumnName = "iqc_type")] public string? IqcType { get; set; } /// /// IQC分类名称 /// [SugarColumn(ColumnName = "iqc_type_name")] public string? IqcTypeName { get; set; } /// /// 上级分组 /// [SugarColumn(ColumnName = "pgroup")] public string? Pgroup { get; set; } /// /// 描述 /// [SugarColumn(ColumnName = "description")] public string? Description { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }