同步erp用户

This commit is contained in:
2024-10-09 08:44:01 +08:00
parent e26e405006
commit 92d5a5400f
6 changed files with 132 additions and 38 deletions

View File

@@ -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; }
}
}