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>
|
|
/// ±íÃû
|
|
/// </summary>
|
|
public string TABEL_NAME { get; set; }
|
|
/// <summary>
|
|
/// ×Ö¶ÎÃû³Æ
|
|
/// </summary>
|
|
public string FIELD_NAME { get; set; }
|
|
/// <summary>
|
|
/// ÏÔʾÃû³Æ
|
|
/// </summary>
|
|
public string LABEL { get; set; }
|
|
/// <summary>
|
|
/// ÓïÑÔ
|
|
/// </summary>
|
|
|
|
[DefaultValue("zh_CN")]
|
|
public string LANGUAGE { get; set; }
|
|
|
|
}
|
|
}
|