You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity
|
|
{
|
|
public class SCP_ASK_DETAIL_EXPORT
|
|
{
|
|
//public string 状态 {get;set;} //"State"
|
|
public string 要货单号 { get; set; } //"AskBillNum"
|
|
public string 行号 {get;set;} //"PoLine"
|
|
public string 零件名称 {get;set;} //"PartDesc1"
|
|
public string 零件号 {get;set;} //"PartCode"
|
|
public string 单位 {get;set;} //"PoUnit"
|
|
public string 标包数量 {get;set;} //"PackQty"
|
|
// public string 币种 {get;set;} //"CurrencyDesc"
|
|
//public string 价格 {get;set;} //"Price"
|
|
public string 要货数量 {get;set;} //"AskQty"
|
|
public string 说明 { get; set; } //"ReMark"
|
|
public string 到货日期 { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|