Files
SGGL_SHJ/SGGL/Model/CLGL/Tw_InputDetailBarCodeOutput.cs
T
lpf 9810280e42 feat(clgl): 完善材料匹配与入库条码查询
通过按材料编码优化库存匹配并增加条码查询入口,减少材料主编码选择歧义,便于按项目追溯入库条码。
2026-09-16 15:47:51 +08:00

22 lines
773 B
C#

namespace Model
{
public class Tw_InputDetailBarCodeOutput
{
public string Id { get; set; }
public string InputDetailId { get; set; }
public string InputMasterId { get; set; }
public string ProjectId { get; set; }
public string CusBillCode { get; set; }
public string MaterialCode { get; set; }
public string Code { get; set; }
public string HeatNo { get; set; }
public string BatchNo { get; set; }
public string MaterialName { get; set; }
public string MaterialDef { get; set; }
public string MaterialSpec { get; set; }
public string MaterialUnit { get; set; }
public string BarCode { get; set; }
public decimal? Quantity { get; set; }
}
}