SGGL_SHJ/SGGL/Model/CLGL/Tw_InputDataIn.cs

24 lines
657 B
C#
Raw Normal View History

2024-09-18 10:48:34 +08:00
using MiniExcelLibs.Attributes;
namespace Model
{
public class Tw_InputDataIn
{
/// <summary>
/// 申请单编号
/// </summary>
[ExcelColumnIndex("A")] public string CusBillCode { get; set; }
/// <summary>
/// 仓库
/// </summary>
[ExcelColumnIndex("B")] public string WarehouseCode { get; set; }
/// <summary>
/// 材料编码
/// </summary>
[ExcelColumnIndex("C")] public string MaterialCode { get; set; }
/// <summary>
/// 数量
/// </summary>
[ExcelColumnIndex("D")] public string PlanNum { get; set; }
}
}