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

44 lines
990 B
C#
Raw Normal View History

2024-05-24 10:22:01 +00:00
namespace Admin.NET.Application;
/// <summary>
/// 码元素内容输出参数
/// </summary>
public class CodeElementPropDto
{
/// <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; }
}