18 lines
470 B
C#
18 lines
470 B
C#
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities.Entity.ErpEntity
|
|
{
|
|
[SugarTable("ERP_ORG_DEPT")]
|
|
public class ErpOrgDept
|
|
{
|
|
public string PK_ORG { get; set; }
|
|
public string ID { get; set; }
|
|
public string CODE { get; set; }
|
|
public string NAME { get; set; }
|
|
public string VID { get; set; }
|
|
/// <summary>
|
|
/// 修改时间
|
|
/// </summary>
|
|
public string MODIFIEDTIME { get; set; }
|
|
}
|
|
} |