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.

39 lines
901 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("wms_outsource_bom")]
[Serializable]
public class WmsOutsourceBom : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("item_part_no")]
[DisplayName(" ")]
public string ItemPartNo { get; set; }
#region
[NotMapped]
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[NotMapped]
[Column("item_part_spec")]
[DisplayName(" ")]
public string ItemPartSpec { get; set; }
#endregion
}
}