using SqlSugar; namespace MES.Service.Modes; /// /// 供应商信息 /// [SugarTable("MES_SUPPLIER")] public class MesSupplier { /// /// ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 供应商编码 /// [SugarColumn(ColumnName = "SUPP_NO")] public string? SuppNo { get; set; } /// /// 供应商名称 /// [SugarColumn(ColumnName = "SUPP_NAME")] public string? SuppName { get; set; } /// /// 供应商简称 /// [SugarColumn(ColumnName = "SUPP_SNAME")] public string? SuppSname { get; set; } /// /// 地区 /// [SugarColumn(ColumnName = "LAND1")] public string? Land1 { get; set; } /// /// 地址 /// [SugarColumn(ColumnName = "STRAS")] public string? Stras { get; set; } /// /// 电话 /// [SugarColumn(ColumnName = "TELF1")] public string? Telf1 { get; set; } /// /// 传真 /// [SugarColumn(ColumnName = "TELFX")] public string? Telfx { 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 = "REMARK")] public string? Remark { get; set; } /// /// 简码(打印条码用) /// [SugarColumn(ColumnName = "FSCODE")] public string? Fscode { get; set; } /// /// 公司代码 /// [SugarColumn(ColumnName = "COMPANY")] public string? Company { get; set; } /// /// 分厂编码 /// [SugarColumn(ColumnName = "FACTORY")] public string? Factory { get; set; } /// /// 物料是否共管(是,否) /// [SugarColumn(ColumnName = "ITEM_C")] public short? ItemC { get; set; } /// /// 物料是否回写SAP接口(是,否) /// [SugarColumn(ColumnName = "ITEM_SAP")] public short? ItemSap { get; set; } /// /// 是否批次管理(是,否) /// [SugarColumn(ColumnName = "LOT_FLAG")] public short? LotFlag { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "LXR")] public string? Lxr { get; set; } /// /// 负责人 /// [SugarColumn(ColumnName = "FSTAFFID")] public string? Fstaffid { get; set; } /// /// 禁用状态 /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? Fforbidstatus { get; set; } /// /// 使用组织 /// [SugarColumn(ColumnName = "CREATE_ORG")] public decimal? CreateOrg { get; set; } /// /// 创建组织 /// [SugarColumn(ColumnName = "USE_ORG")] public decimal? UseOrg { get; set; } /// /// 自定义字段3 /// [SugarColumn(ColumnName = "REMARK3")] public string? Remark3 { get; set; } /// /// 自定义字段4 /// [SugarColumn(ColumnName = "REMARK4")] public string? Remark4 { get; set; } /// /// 自定义字段5 /// [SugarColumn(ColumnName = "REMARK5")] public string? Remark5 { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }