You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_tray")]
|
|
[Serializable]
|
|
public class GTray : BaseEntity
|
|
{
|
|
[Column("tray_id")]
|
|
[DisplayName(" ")]
|
|
public int TrayId { get; set; }
|
|
|
|
[Column("tray_code")]
|
|
[DisplayName(" ")]
|
|
public string TrayCode { get; set; }
|
|
|
|
[Column("tray_name")]
|
|
[DisplayName(" ")]
|
|
public string TrayName { get; set; }
|
|
|
|
[Column("tray_type_id")]
|
|
[DisplayName(" ")]
|
|
public int? TrayTypeId { get; set; }
|
|
|
|
[Column("tray_seq")]
|
|
[DisplayName(" ")]
|
|
public int TraySeq { get; set; }
|
|
|
|
#region 扩展字段
|
|
[NotMapped]
|
|
[Column("type_name")]
|
|
[DisplayName(" ")]
|
|
public string TypeName { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("enum_desc")]
|
|
[DisplayName(" ")]
|
|
public string EnumDesc { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|