40 lines
1004 B
C#
40 lines
1004 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
namespace APT.BaseData.Domain.Entities
|
|||
|
|
{
|
|||
|
|
[APT.Infrastructure.Api.RootOrg]
|
|||
|
|
[IgnoreT4] public partial class T_PF_LABEL : MesEntityBase
|
|||
|
|
{
|
|||
|
|
public T_PF_LABEL() : base()
|
|||
|
|
{
|
|||
|
|
this.LANGUAGE = "zh_CN";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public T_PF_LABEL(string TABEL_NAME, string FIELD_NAME,string LABEL) : base()
|
|||
|
|
{
|
|||
|
|
this.TABEL_NAME = TABEL_NAME;
|
|||
|
|
this.FIELD_NAME = FIELD_NAME;
|
|||
|
|
this.LABEL = LABEL;
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
public string TABEL_NAME { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20>ֶ<EFBFBD><D6B6><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
public string FIELD_NAME { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
public string LABEL { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><><EFBFBD><EFBFBD>
|
|||
|
|
/// </summary>
|
|||
|
|
|
|||
|
|
[DefaultValue("zh_CN")]
|
|||
|
|
public string LANGUAGE { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|