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.
47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_tray_detail")]
|
|
[Serializable]
|
|
public class GTrayDetail : BaseEntity
|
|
{
|
|
[Column("tray_id")]
|
|
[DisplayName(" ")]
|
|
public int TrayId { get; set; }
|
|
|
|
[Column("tray_loc")]
|
|
[DisplayName(" ")]
|
|
public int TrayLoc { get; set; }
|
|
|
|
[Column("place_part_location")]
|
|
[DisplayName(" ")]
|
|
public string PlacePartLocation { get; set; }
|
|
|
|
#region 扩展字段
|
|
|
|
[NotMapped]
|
|
[Column("tray_name")]
|
|
[DisplayName(" ")]
|
|
public string TrayName { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("tray_loc1")]
|
|
[DisplayName(" ")]
|
|
public string TrayLoc1 { get; set; }
|
|
|
|
[NotMapped]
|
|
[Column("place_part_location1")]
|
|
[DisplayName(" ")]
|
|
public string PlacePartLocation1 { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|