Files
SGGL_SHJ/SGGL/Model/CLGL/Tw_InputDetailBarCodeOutput.cs
T
lpf 44cd0fcf8c feat(clgl): 新增入库材料条形码打印
生成入库单时同步生成入库材料条形码明细,并在入库单管理中支持整单和单条条形码打印。
2026-05-18 21:28:56 +08:00

15 lines
454 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 CusBillCode { get; set; }
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
public string MaterialDef { get; set; }
public string BarCode { get; set; }
}
}