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.

42 lines
934 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_bom_prev")]
[Serializable]
public class SysBomPrev : BaseEntity
{
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("prd_version")]
[DisplayName(" ")]
public string PrdVersion { get; set; }
[Column("prd_area")]
[DisplayName(" ")]
public string PrdArea { get; set; }
[Column("pdline_code")]
[DisplayName(" ")]
public string PdlineCode { get; set; }
[Column("bom_remark")]
[DisplayName(" ")]
public string BomRemark { get; set; }
[Column("create_time")]
[DisplayName(" ")]
public DateTime CreateTime { get; set; }
}
}