啊鑫
2025-02-09 70e8a5aec5d49a95483d4c0e066ccdcc45a02e79
StandardPda/MES.Service/Modes/EmployeeItem.cs
@@ -1,40 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using SqlSugar;
namespace MES.Service.Modes
namespace MES.Service.Modes;
/// <summary>
/// </summary>
[SugarTable("EMPLOYEE_ITEM")]
public class EmployeeItem
{
    /// <summary>
    ///
    ///</summary>
    [SugarTable("EMPLOYEE_ITEM")]
    public class EmployeeItem
    {
        /// <summary>
        ///
        ///</summary>
        [SugarColumn(ColumnName = "ID",
            OracleSequenceName = "SEQ_EMP",
            IsPrimaryKey = true)]
        public decimal Id { get; set; }
    /// </summary>
    [SugarColumn(ColumnName = "ID",
        OracleSequenceName = "SEQ_EMP",
        IsPrimaryKey = true)]
    public decimal Id { get; set; }
        /// <summary>
        /// info的id
        ///</summary>
        [SugarColumn(ColumnName = "EID")]
        public decimal? Eid { get; set; }
    /// <summary>
    ///     info的id
    /// </summary>
    [SugarColumn(ColumnName = "EID")]
    public decimal? Eid { get; set; }
        /// <summary>
        /// 0=采购业务员, 1=销售业务员, 2=库管员, 3=拣货员, 4=理货员, 5=设计员, 6=计划员, 7=生产管理员, 8=统计员, 9=质检员, 10=成本会计, 11=收款员, 12=资产管理员, 13=其他, 14=设备管理员
        ///</summary>
        [SugarColumn(ColumnName = "E_TYPE")]
        public string? EType { get; set; }
    /// <summary>
    ///     0=采购业务员, 1=销售业务员, 2=库管员, 3=拣货员, 4=理货员, 5=设计员, 6=计划员, 7=生产管理员, 8=统计员, 9=质检员,
    ///     10=成本会计, 11=收款员, 12=资产管理员, 13=其他, 14=设备管理员
    /// </summary>
    [SugarColumn(ColumnName = "E_TYPE")]
    public string? EType { get; set; }
        /// <summary>
        /// 时间
        ///</summary>
        [SugarColumn(ColumnName = "CREATE_DATE")]
        public string? CreateDate { get; set; }
    }
    /// <summary>
    ///     时间
    /// </summary>
    [SugarColumn(ColumnName = "CREATE_DATE")]
    public string? CreateDate { get; set; }
}