同步erp用户
This commit is contained in:
@@ -2,6 +2,9 @@ using SqlSugar;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// erp人员
|
||||
/// </summary>
|
||||
[SugarTable("ERP_BD_PSNDOC")]
|
||||
public class ErpBdPsndoc
|
||||
{
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// erp用户
|
||||
/// </summary>
|
||||
[SugarTable("ERP_SM_USER")]
|
||||
public class ErpSmUser
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string PK_PSNDOC { get; set; }
|
||||
public string CODE { get; set; }
|
||||
public string NAME { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
|
||||
{
|
||||
public class ErpUserDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 员工id
|
||||
/// </summary>
|
||||
public string PERSON_ID { get; set; }
|
||||
public string USER_ID { get; set; }
|
||||
public string CODE { get; set; }
|
||||
public string NAME { get; set; }
|
||||
/// <summary>
|
||||
/// 1 erp人员 2 erp用户
|
||||
/// </summary>
|
||||
public string TYPE { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user