using System; using System.Linq; using System.Text; using SqlSugar; namespace MyCode.Project.Domain.Model { /// /// /// [SugarTable("RpEmployeeDepartLog")] public partial class RpEmployeeDepartLog { public RpEmployeeDepartLog(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public Guid Id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime CreateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WechatDepartName {get;set;} /// /// Desc:企业微信的部门id /// Default: /// Nullable:True /// public long? WechatDepartmentId {get;set;} /// /// Desc:金蝶系统的部门ID /// Default: /// Nullable:True /// public int? KDepartementId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string KDName {get;set;} /// /// Desc:微信员工名字 /// Default: /// Nullable:True /// public string Nick {get;set;} /// /// Desc:员工openid /// Default: /// Nullable:True /// public string OpenId {get;set;} /// /// Desc:员工id /// Default: /// Nullable:True /// public Guid? EmployeeId {get;set;} /// /// Desc:员工userid /// Default: /// Nullable:True /// public string EmployeeUserId {get;set;} /// /// Desc:执行结果 -1=金蝶未找到员工 0=未开始 3=名字重复且部门无法匹配 100=更新完毕 /// Default: /// Nullable:True /// public int? Status {get;set;} /// /// Desc:金蝶的OPENID /// Default: /// Nullable:True /// public string FWECOMID {get;set;} /// /// Desc:金蝶的人员T_BD_StaffData主键ID /// Default: /// Nullable:True /// public int? FID {get;set;} /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsIdentity=true)] public int SortNum {get;set;} /// /// Desc:部门比对状态 0=未比对 1=两边不一致 100=一致 /// Default: /// Nullable:True /// public int? DepartStatus {get;set;} /// /// Desc:部门比对状态 0=未比对 1=两边不一致 100=一致 /// Default: /// Nullable:True /// public int? OpenIdStatus {get;set;} /// /// Desc:编辑时间 /// Default: /// Nullable:True /// public DateTime? EditTime {get;set;} } }