using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_ht_move_trans")] [Serializable] public class GHtMoveTrans : BaseEntity { [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("item_part_no")] [DisplayName(" ")] public string ItemPartNo { get; set; } [Column("lot_no")] [DisplayName(" ")] public string LotNo { get; set; } [Column("qty")] [DisplayName(" ")] public decimal Qty { get; set; } [Column("bom_version")] [DisplayName(" ")] public string BomVersion { get; set; } [Column("item_part_version")] [DisplayName(" ")] public string ItemPartVersion { get; set; } [Column("pdline_name")] [DisplayName(" ")] public string PdlineName { get; set; } [Column("trans_type")] [DisplayName(" ")] public string TransType { get; set; } [Column("wo_detail_id")] [DisplayName(" ")] public int? WoDetailId { get; set; } [Column("prod_type")] [DisplayName(" ")] public string ProdType { get; set; } [Column("carton_no")] [DisplayName(" ")] public string CartonNo { get; set; } [Column("trans_status")] [DisplayName(" ")] public string TransStatus { get; set; } [Column("ruid")] [DisplayName(" ")] public int? Ruid { get; set; } } }