using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Xml.Linq; using SqlSugar; namespace Durkee.Mes.Api.Model.domain { /// /// 系统基础资料-人员基础资料 yuany /// [SugarTable("BasUser"), TenantAttribute("mes")] [DataContract(Name = "BaseUser 人员基础资料")] public class BaseUser { /// /// /// [SugarColumn(ColumnName="ObjID" ,IsPrimaryKey = true ,IsIdentity = true )] public int ObjID { get; set; } /// /// /// [SugarColumn(ColumnName="UserName" )] public string UserName { get; set; } /// /// /// [SugarColumn(ColumnName="UserPWD" )] public string UserPWD { get; set; } /// /// /// [SugarColumn(ColumnName="RealName" )] public string RealName { get; set; } /// /// /// 默认值: ((1)) /// [SugarColumn(ColumnName="Sex" )] public int? Sex { get; set; } /// /// /// [SugarColumn(ColumnName="Telephone" )] public string Telephone { get; set; } /// /// /// [SugarColumn(ColumnName="WorkBarcode" )] public string WorkBarcode { get; set; } /// /// /// [SugarColumn(ColumnName="DeptCode" )] public string DeptCode { get; set; } /// /// /// [SugarColumn(ColumnName="WorkID" )] public int? WorkID { get; set; } /// /// /// [SugarColumn(ColumnName="ShiftID" )] public int? ShiftID { get; set; } /// /// /// [SugarColumn(ColumnName="WorkShopID" )] public int? WorkShopID { get; set; } /// /// /// [SugarColumn(ColumnName="HRCode" )] public string HRCode { get; set; } /// /// /// [SugarColumn(ColumnName="ERPCode" )] public string ERPCode { get; set; } /// /// /// 默认值: ((0)) /// [SugarColumn(ColumnName="DeleteFlag" )] public string DeleteFlag { get; set; } /// /// /// [SugarColumn(ColumnName="Remark" )] public string Remark { get; set; } /// /// /// 默认值: ((1)) /// [SugarColumn(ColumnName="IsEmployee" )] public string IsEmployee { get; set; } /// /// /// [SugarColumn(ColumnName="RecordTime" )] public DateTime? RecordTime { get; set; } } }