DigitalFactory/Admin.NET/Admin.NET.Application/Service/CodeElementProp/Dto/CodeElementPropOutput.cs

46 lines
836 B
C#

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