2025-04-21 14:10:27 +08:00

119 lines
3.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace MyCode.Project.Domain.Model
{
///<summary>
///
///</summary>
[SugarTable("BasEmployeeDepart")]
public partial class BasEmployeeDepart
{
public BasEmployeeDepart(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public Guid Id {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:部门id
/// Default:
/// Nullable:True
/// </summary>
public Guid? DepartmentId {get;set;}
/// <summary>
/// Desc:1:删除 0正常
/// Default:
/// Nullable:True
/// </summary>
public int? IsDeleteI {get;set;}
/// <summary>
/// Desc:金蝶系统的部门ID
/// Default:
/// Nullable:True
/// </summary>
public int? KDepartementId {get;set;}
/// <summary>
/// Desc:企业微信的部门id
/// Default:
/// Nullable:True
/// </summary>
public long? WechatDepartmentId {get;set;}
/// <summary>
/// Desc:微信的部门名称
/// Default:
/// Nullable:True
/// </summary>
public string WechatDepartName {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:执行结果 -1=金蝶未找到员工 0=未开始 3=名字重复且部门无法匹配 100=更新完毕
/// Default:
/// Nullable:True
/// </summary>
public int? Status {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;}
}
}