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.
23 lines
733 B
23 lines
733 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity.ExcelImportEntity
|
|
{
|
|
public class SCP_ASN_EXCEL
|
|
{
|
|
public string 采购订单号 { get; set; }
|
|
public string 收货单号 { get; set; }
|
|
public string 零件编号 { get; set; }
|
|
public string 行号 { get; set; }
|
|
public string 供应商编码 { get; set; }
|
|
public string 批次 { get; set; }
|
|
public string 供应商批次 { get; set; }
|
|
public string 数量 { get; set; }
|
|
public string 单位 { get; set; }
|
|
public string 标包数 { get; set; }
|
|
public string 价格 { get; set; }
|
|
}
|
|
}
|
|
|