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.
22 lines
816 B
22 lines
816 B
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_ARRIVE_DETAIL_EXPORT
|
|
{
|
|
public string 单据号 { get; set; } //"ArrvBillNum"
|
|
public string 发货单号 { get; set; } //"AsnBillNum"
|
|
public string 订单号 { get; set; } //"PoBillNum"
|
|
public string 订单行 { get; set; }//"PoLine"
|
|
public string 零件号 { get; set; } //"PartCode"
|
|
public string 零件名称 { get; set; } //"PartDesc1"
|
|
public string 单位 { get; set; } //"Unit"
|
|
public string 数量 { get; set; } //"Qty"
|
|
public string 时间 { get; set; } //"ShipTime"
|
|
public string 备注 { get; set; } //"Remark"
|
|
}
|
|
}
|
|
|