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 = "TELF1")] public string? Telf1 { 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; } /// /// 联系人 /// [SugarColumn(ColumnName = "LXR")] public string? Lxr { get; set; } /// /// 负责人 /// [SugarColumn(ColumnName = "FSTAFFID")] public string? Fstaffid { get; set; } /// /// 禁用状态 /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? Fforbidstatus { get; set; } /// /// 自定义字段1 /// [SugarColumn(ColumnName = "TYPE")] public string? type { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARK")] public string? Remarks { get; set; } /// /// 使用组织 /// [SugarColumn(ColumnName = "FSubsidiary")] public string? FSubsidiary { get; set; } /// /// 创建组织 /// [SugarColumn(ColumnName = "Fumbrella")] public string? Fumbrella { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }