namespace Admin.NET.Application;
///
/// 单位基础信息输出参数
///
public class WmsUnitOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 编号
///
public string UnitCode { get; set; }
///
/// 名称
///
public string UnitName { get; set; }
///
/// 描述
///
public string? UnitDesc { get; set; }
///
/// 精度
///
public int DecimalPrecision { get; set; }
///
/// 是否禁用
///
public bool IsDisabled { 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; }
}