DigitalFactory/Admin.NET/Admin.NET.Application/Service/ProductCodeConfiguration/Dto/ProductCodeConfigurationDto.cs

79 lines
1.9 KiB
C#
Raw Normal View History

2024-03-20 02:37:36 +00:00
namespace Admin.NET.Application;
/// <summary>
/// 产码配置输出参数
/// </summary>
public class ProductCodeConfigurationDto
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 条码类型
/// </summary>
public string? CodeType { get; set; }
/// <summary>
/// 条码类型ID
/// </summary>
public long? CodeTypeId { get; set; }
/// <summary>
/// 条码长度
/// </summary>
public int? CodeLength { get; set; }
/// <summary>
/// 内码长度
/// </summary>
public int? InternalCodeLength { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? Remarks { get; set; }
/// <summary>
/// 租户Id
/// </summary>
public long? TenantId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 创建者Id
/// </summary>
public long? CreateUserId { get; set; }
/// <summary>
/// 创建者姓名
/// </summary>
public string? CreateUserName { get; set; }
/// <summary>
/// 修改者Id
/// </summary>
public long? UpdateUserId { get; set; }
/// <summary>
/// 修改者姓名
/// </summary>
public string? UpdateUserName { get; set; }
/// <summary>
/// 软删除
/// </summary>
public bool IsDelete { get; set; }
}