啊鑫
2024-10-22 e08a2e8a24be0996dec3b681f3c4ab45333f331c
MES.Service/Modes/MesPosition.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,77 @@
using SqlSugar;
namespace MES.Service.Modes;
/// <summary>
///     å²—位信息
/// </summary>
[SugarTable("MES_POSITION")]
public class MesPosition
{
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
    public decimal Id { get; set; }
    /// <summary>
    ///     å²—位编号
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_ID")]
    public string? PositionId { get; set; }
    /// <summary>
    ///     å²—位名称
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_NAME")]
    public string? PositionName { get; set; }
    /// <summary>
    ///     å²—位描述
    /// </summary>
    [SugarColumn(ColumnName = "POSITION_DESCRIPTION")]
    public string? PositionDescription { get; set; }
    /// <summary>
    ///     æ‰€å±žéƒ¨é—¨
    /// </summary>
    [SugarColumn(ColumnName = "DEPARTMENT")]
    public string? Department { get; set; }
    /// <summary>
    ///     å»ºç«‹æ—¥æœŸ
    /// </summary>
    [SugarColumn(ColumnName = "CREATION_DATE")]
    public DateTime? CreationDate { get; set; }
    /// <summary>
    ///     ç¦ç”¨äºº
    /// </summary>
    [SugarColumn(ColumnName = "DISABLED_BY")]
    public string? DisabledBy { get; set; }
    /// <summary>
    ///     ç¦ç”¨æ—¥æœŸ
    /// </summary>
    [SugarColumn(ColumnName = "DISABLED_DATE")]
    public DateTime? DisabledDate { get; set; }
    /// <summary>
    ///     ç¦ç”¨çŠ¶æ€  A å¯ç”¨ B禁用
    /// </summary>
    [SugarColumn(ColumnName = "FFORBIDSTATUS")]
    public string? Fforbidstatus { get; set; }
    /// <summary>
    ///     ä½¿ç”¨çµ„ç¹”
    /// </summary>
    [SugarColumn(ColumnName = "FSUBSIDIARY")]
    public string? FUseOrgId { get; set; }
    /// <summary>
    ///     å‰µå»ºçµ„ç¹”
    /// </summary>
    [SugarColumn(ColumnName = "FUMBRELLA")]
    public string? FCreateOrgId { get; set; }
    [SugarColumn(IsIgnore = true)] public string? Type { get; set; }
}