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