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.0 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("mes_route_group_detail")]
[Serializable]
public class MesRouteGroupDetail : BaseEntity
{
[Column("group_id")]
[DisplayName(" ")]
public int GroupId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
#region 扩展字段
[NotMapped]
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[NotMapped]
[Column("create_time")]
[DisplayName("")]
public string CreateTime { get; set; }
[NotMapped]
[Column("update_time")]
[DisplayName("")]
public string UpdateTime { get; set; }
[NotMapped]
[Column("Total")]
[DisplayName("")]
public string Total { get; set; }
#endregion
}
}