namespace Admin.NET.Application; /// /// 打印信息输出参数 /// public class PrintDataMaterialsInput { /// /// 主键Id /// public long Id { get; set; } /// /// 编码头 /// public string CodeHead { get; set; } /// /// 编码长度 /// public int CodeLength { get; set; } /// /// 数量 /// public int Count { get; set; } /// /// 码类型 /// public string? CodeType { get; set; } /// /// 单位组 /// public long? UnitGroupId { get; set; } /// /// 备注 /// public string? Remark { get; set; } }