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.

185 lines
4.6 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_ht_part")]
[Serializable]
public class SysHtPart : BaseEntity
{
[Column("part_id")]
[DisplayName(" ")]
public int PartId { get; set; }
[Column("part_no")]
[DisplayName(" ")]
public string PartNo { get; set; }
[Column("part_spec")]
[DisplayName(" ")]
public string PartSpec { get; set; }
[Column("part_type")]
[DisplayName(" ")]
public string PartType { get; set; }
[Column("model_id")]
[DisplayName(" ")]
public int? ModelId { get; set; }
[Column("label_file")]
[DisplayName(" ")]
public string LabelFile { get; set; }
[Column("label_type")]
[DisplayName(" ")]
public string LabelType { get; set; }
[Column("erp_part_no")]
[DisplayName(" ")]
public string ErpPartNo { get; set; }
[Column("rule_set")]
[DisplayName(" ")]
public string RuleSet { get; set; }
[Column("uom")]
[DisplayName(" ")]
public string Uom { get; set; }
[Column("route_id")]
[DisplayName(" ")]
public int? RouteId { get; set; }
[Column("locate_id")]
[DisplayName(" ")]
public int? LocateId { get; set; }
[Column("upc_code")]
[DisplayName(" ")]
public string UpcCode { get; set; }
[Column("ucc_code")]
[DisplayName(" ")]
public string UccCode { get; set; }
[Column("ean_code")]
[DisplayName(" ")]
public string EanCode { get; set; }
[Column("burnin_time")]
[DisplayName(" ")]
public int? BurninTime { get; set; }
[Column("version")]
[DisplayName(" ")]
public string Version { get; set; }
[Column("cust_part_no")]
[DisplayName(" ")]
public string CustPartNo { get; set; }
[Column("vendor_part_no")]
[DisplayName(" ")]
public string VendorPartNo { get; set; }
[Column("mfger_part_no")]
[DisplayName(" ")]
public string MfgerPartNo { get; set; }
[Column("subboard_qty")]
[DisplayName(" ")]
public int? SubboardQty { get; set; }
[Column("split_flag")]
[DisplayName(" ")]
public string SplitFlag { get; set; }
[Column("batch_control")]
[DisplayName(" ")]
public string BatchControl { get; set; }
[Column("min_pack_qty")]
[DisplayName(" ")]
public decimal? MinPackQty { get; set; }
[Column("min_stock_qty")]
[DisplayName(" ")]
public decimal? MinStockQty { get; set; }
[Column("indate_flag")]
[DisplayName(" ")]
public string IndateFlag { get; set; }
[Column("indate")]
[DisplayName(" ")]
public int? Indate { get; set; }
[Column("sampling_plan_id")]
[DisplayName(" ")]
public int? SamplingPlanId { get; set; }
[Column("over_request")]
[DisplayName(" ")]
public string OverRequest { get; set; }
[Column("default_box_qty")]
[DisplayName(" ")]
public decimal? DefaultBoxQty { get; set; }
[Column("default_reel_qty")]
[DisplayName(" ")]
public decimal? DefaultReelQty { get; set; }
[Column("default_set_qty")]
[DisplayName(" ")]
public decimal? DefaultSetQty { get; set; }
[Column("option1")]
[DisplayName(" ")]
public string Option1 { get; set; }
[Column("option2")]
[DisplayName(" ")]
public string Option2 { get; set; }
[Column("option3")]
[DisplayName(" ")]
public string Option3 { get; set; }
[Column("option4")]
[DisplayName(" ")]
public string Option4 { get; set; }
[Column("option5")]
[DisplayName(" ")]
public string Option5 { get; set; }
[Column("option6")]
[DisplayName(" ")]
public string Option6 { get; set; }
[Column("option7")]
[DisplayName(" ")]
public string Option7 { get; set; }
[Column("option8")]
[DisplayName(" ")]
public string Option8 { get; set; }
[Column("option9")]
[DisplayName(" ")]
public string Option9 { get; set; }
[Column("option10")]
[DisplayName(" ")]
public string Option10 { get; set; }
}
}