using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { [Serializable] public class RfInfo { [Column("r_val")] [DisplayName(" ")] public string RVal { get; set; } [Column("r_msg")] [DisplayName(" ")] public string RMsg { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("need_qty")] [DisplayName(" ")] public string NeedQty { get; set; } [Column("pick_no")] [DisplayName(" ")] public string PickNo { get; set; } [Column("carton_no")] [DisplayName("箱条码")] public string CartonNo { get; set; } [Column("pick_qty")] [DisplayName(" ")] public string PickQty { get; set; } [Column("qty")] [DisplayName(" ")] public string Qty { get; set; } [Column("recQty")] [DisplayName(" ")] public string RecQty { get; set; } [Column("tres")] [DisplayName(" ")] public string Tres { get; set; } [Column("row_count")] [DisplayName(" ")] public string RowCount { get; set; } [Column("locate_name")] [DisplayName(" ")] public string LocateName { get; set; } [Column("default_qty")] [DisplayName(" ")] public string DefaultQty { get; set; } [Column("part_id")] [DisplayName(" ")] public string PartId { get; set; } [Column("pdline_id")] [DisplayName(" ")] public string PdlineId { get; set; } [Column("locate_id")] [DisplayName(" ")] public string LocateId { get; set; } [Column("count_locate")] [DisplayName(" ")] public string CountLocate { get; set; } [Column("total_qty")] [DisplayName(" ")] public string TotalQty { get; set; } [Column("inline_qty")] [DisplayName(" ")] public string InlineQty { get; set; } [Column("request_qty")] [DisplayName(" ")] public string RequestQty { get; set; } [Column("issue_qty")] [DisplayName(" ")] public string IssueQty { get; set; } [Column("sap_qty")] [DisplayName(" ")] public string SapQty { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("order_type_desc")] [DisplayName(" ")] public string OrderTypeDesc { get; set; } [Column("create_userid")] [DisplayName(" ")] public string CreateUserid { get; set; } [Column("create_time")] [DisplayName(" ")] public string CreateTime { get; set; } [Column("src_zone_id")] [DisplayName(" ")] public string SrcZoneId { get; set; } [Column("src_zone_name")] [DisplayName(" ")] public string SrcZoneName { get; set; } [Column("emp_no")] [DisplayName(" ")] public string EmpNo { get; set; } [Column("factory_code")] [DisplayName(" ")] public string FactoryCode { get; set; } [Column("fact_qty")] [DisplayName(" ")] public string FactQty { get; set; } [Column("zone_id")] [DisplayName(" ")] public string ZoneId { get; set; } [Column("zone_name")] [DisplayName(" ")] public string ZoneName { get; set; } [Column("PartSpec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } } }