using SqlSugar; namespace MES.Service.Modes; /// /// [SugarTable("SYS_ORGANIZATION")] public class SysOrganization { /// /// 主键 /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "NAME")] public string? Fname { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "CON_PEOPLE")] public string? ConPeople { get; set; } /// /// 联系电话 /// [SugarColumn(ColumnName = "CON_TEL")] public string? ConTel { get; set; } /// /// 系统内置 /// [SugarColumn(ColumnName = "IS_SYS")] public int? IsSys { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "IS_STATUS")] public bool? Fforbidstatus { get; set; } /// /// 编辑时间 /// [SugarColumn(ColumnName = "EDT_TIME")] public DateTime? EdtTime { get; set; } /// /// [SugarColumn(ColumnName = "check_date")] public DateTime? CheckDate { get; set; } /// /// [SugarColumn(ColumnName = "check_by")] public string? CheckBy { get; set; } /// /// 默认值: ((0)) /// [SugarColumn(ColumnName = "check_status")] public bool? CheckStatus { get; set; } /// /// 组织ID /// [SugarColumn(ColumnName = "FID")] public string? Id { get; set; } /// /// 组织编号 /// [SugarColumn(ColumnName = "FNumber")] public string? Fnumber { get; set; } /// /// 父级ID /// [SugarColumn(ColumnName = "FParentlD")] public string? FParentID { get; set; } /// /// 同步时间 /// [SugarColumn(ColumnName = "SYNCHRONOUS_DATE")] public DateTime? FCreateDate { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "FDescription")] public string? FDescription { get; set; } /// /// 禁用人 /// [SugarColumn(ColumnName = "FFORBIDORID")] public string? FFORBIDORID { get; set; } /// /// 禁用时间 /// [SugarColumn(ColumnName = "FFORBIDDATE")] public DateTime? FFORBIDDATE { get; set; } }