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.
61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
|
|
[Serializable]
|
|
public class GetQcListSAP
|
|
{
|
|
[Column("snp_qty")]
|
|
[DisplayName(" ")]
|
|
public string SnpQty { get; set; }
|
|
|
|
[Column("factory_id")]
|
|
[DisplayName(" ")]
|
|
public string FactoryId { get; set; }
|
|
|
|
[Column("factory_name")]
|
|
[DisplayName(" ")]
|
|
public string FactoryName { get; set; }
|
|
|
|
[Column("order_no")]
|
|
[DisplayName(" ")]
|
|
public string OrderNo { get; set; }
|
|
|
|
[Column("part_id")]
|
|
[DisplayName(" ")]
|
|
public string PartId { get; set; }
|
|
|
|
[Column("lot_no")]
|
|
[DisplayName(" ")]
|
|
public string LotNo { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName(" ")]
|
|
public string Qty { get; set; }
|
|
|
|
[Column("carton_qty")]
|
|
[DisplayName(" ")]
|
|
public string CartonQty { get; set; }
|
|
|
|
[Column("part_name")]
|
|
[DisplayName(" ")]
|
|
public string PartName { get; set; }
|
|
|
|
[Column("part_no")]
|
|
[DisplayName(" ")]
|
|
public string PartNo { get; set; }
|
|
|
|
[Column("vendor_name")]
|
|
[DisplayName(" ")]
|
|
public string VendorName { get; set; }
|
|
|
|
[Column("vendor_id")]
|
|
[DisplayName(" ")]
|
|
public string VendorId { get; set; }
|
|
|
|
}
|
|
}
|