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