20 lines
569 B
C#
20 lines
569 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.BatchBindMatDetail
|
|
{
|
|
public class MatDetailCurrentInfoImportModel
|
|
{
|
|
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 int? 数量 { get; set; }
|
|
public string 货架编码 { get; set; }
|
|
}
|
|
}
|