using SqlSugar; namespace MES.Service.Modes; /// /// [SugarTable("ORGANIZE")] public class Organize { /// /// /// [SugarColumn(ColumnName = "ID")] public decimal? Id { get; set; } /// /// 组织英文 /// [SugarColumn(ColumnName = "FNUMBER")] public string Fnumber { get; set; } /// /// 组织名 /// [SugarColumn(ColumnName = "FNAME")] public string Fname { get; set; } /// /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string Fforbidstatus { get; set; } /// /// [SugarColumn(ColumnName = "TYPE")] public string Type { get; set; } }