using SqlSugar;
namespace MES.Service.Modes;
///
/// 岗位信息
///
[SugarTable("MES_POSITION")]
public class MesPosition
{
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
public Guid Guid { get; set; }
///
///
[SugarColumn(ColumnName = "id")]
public decimal Id { get; set; }
///
/// 岗位编号
///
[SugarColumn(ColumnName = "position_id")]
public string? PositionId { get; set; }
///
/// 岗位名称
///
[SugarColumn(ColumnName = "position_name")]
public string? PositionName { get; set; }
///
/// 岗位描述
///
[SugarColumn(ColumnName = "position_description")]
public string? PositionDescription { get; set; }
///
/// 所属部门
///
[SugarColumn(ColumnName = "department")]
public string? Department { get; set; }
///
/// 建立日期
///
[SugarColumn(ColumnName = "creation_date")]
public DateTime? CreationDate { get; set; }
///
/// 禁用人
///
[SugarColumn(ColumnName = "disabled_by")]
public string? DisabledBy { get; set; }
///
/// 禁用日期
///
[SugarColumn(ColumnName = "disabled_date")]
public DateTime? DisabledDate { get; set; }
///
///
[SugarColumn(ColumnName = "remark1")]
public string? Remark1 { get; set; }
///
///
[SugarColumn(ColumnName = "remark2")]
public string? Remark2 { get; set; }
///
///
[SugarColumn(ColumnName = "remark3")]
public string? Remark3 { get; set; }
///
///
[SugarColumn(ColumnName = "remark4")]
public string? Remark4 { get; set; }
///
///
[SugarColumn(ColumnName = "remark5")]
public string? Remark5 { get; set; }
///
/// 禁用状态
///
[SugarColumn(ColumnName = "fforbidstatus")]
public string? Fforbidstatus { get; set; }
///
/// 使用組織
///
[SugarColumn(ColumnName = "FSUBSIDIARY")]
public string? FUseOrgId { get; set; }
///
/// 創建組織
///
[SugarColumn(ColumnName = "FUMBRELLA")]
public string? FCreateOrgId { get; set; }
[SugarColumn(IsIgnore = true)] public string? Type { get; set; }
}