16 lines
367 B
C#
16 lines
367 B
C#
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; }
|
|
}
|
|
} |