using SqlSugar;
namespace NewPdaSqlServer.entity
{
///
///
///
[SugarTable("SYS_ORGANIZATION")]
public class SysOrganization
{
///
/// 主键
/// 默认值: (newid())
///
[SugarColumn(ColumnName="GUID" ,IsPrimaryKey = true )]
public Guid Guid { get; set; }
///
/// 名称
///
[SugarColumn(ColumnName="NAME" )]
public string Name { 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? IsStatus { 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 Fid { get; set; }
///
/// 组织编号
///
[SugarColumn(ColumnName="FNumber" )]
public string FNumber { get; set; }
///
/// 父级ID
///
[SugarColumn(ColumnName="FParentlD" )]
public string FParentlD { get; set; }
}
}