namespace Admin.NET.Application; /// /// 码元素内容输出参数 /// public class CodeElementPropDto { /// /// 主键Id /// public long Id { get; set; } /// /// 码元素Id /// public long CodeElementId { get; set; } /// /// 长度 /// public int Length { get; set; } /// /// 序号 /// public int? Index { get; set; } /// /// 码元素值 /// public string? CodeValue { get; set; } /// /// 产码规则 /// public string? CodeType { get; set; } /// /// 备注 /// public string? Remark { get; set; } }