qwj
2023-08-02 67965cce30e900f9b6091170745ecf115f64e23d
DocumentServiceAPI.Model/cyDocumentModel/Document_EmployeeInfo.cs
@@ -6,134 +6,79 @@
namespace DocumentServiceAPI.Model.cyDocumentModel
{
    ///<summary>
    ///
    /// 文档员工信息
    ///</summary>
    [SugarTable("Document_EmployeeInfo")]
    public partial class Document_EmployeeInfo
    {
           public Document_EmployeeInfo(){
           }
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:False
        /// 员工ID
           /// </summary>           
           [SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
           public int EmployeeId {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 员工名称
           /// </summary>           
           public string EmployeeName {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 工作职位
           /// </summary>           
           public string Job {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 电话
           /// </summary>           
           public string Phone {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 是否在工作
           /// </summary>           
           public int? IsWork {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 离开时间
           /// </summary>           
           public DateTime? LeaveTime {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 证件正面
           /// </summary>           
           public string CardPositive {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 证件正面版本号
           /// </summary>           
           public string CardPositiveVersionNo {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 证件正面大小
           /// </summary>           
           public int? CardPositiveSize {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 最后更新时间
           /// </summary>           
           public DateTime? LastUpdateTime {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 最后更新人
           /// </summary>           
           public string LastUpdateName {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 用户名
           /// </summary>           
           public string UserName {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 用户密码
           /// </summary>           
           public string UserPassWord {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 登录时间
           /// </summary>           
           public DateTime? LoginTime {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 是否登录
           /// </summary>           
           public bool? IsLogin {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 建议标志
           /// </summary>           
           public int? AdviseFlag {get;set;}
           /// <summary>
           /// Desc:
           /// Default:
           /// Nullable:True
        /// 用户ID
           /// </summary>           
           public int? UserId {get;set;}
    }
}