Files
SGGL_SHJ/SGGL/Model/CLGL/Tw_OutHistoryImportRow.cs
T
lpf c48972cc60 feat(clgl): 支持历史出库数据导入
历史出库数据需要批量补录并同步形成出库申请单、出库单和库存扣减。
新增出库申请历史导入入口,按仓库、材料编码、炉号、批号、数量、
出库时间和领用单位校验模板数据,并按材料单位拆分管段/管件单据。
2026-06-10 10:44:13 +08:00

26 lines
507 B
C#

using System;
namespace Model
{
public class Tw_OutHistoryImportRow
{
public string WarehouseCode { get; set; }
public string MaterialCode { get; set; }
public string Code { get; set; }
public string HeatNo { get; set; }
public string BatchNo { get; set; }
public string MaterialUnit { get; set; }
public decimal Num { get; set; }
public DateTime OutputDate { get; set; }
public string ReqUnitId { get; set; }
}
}