namespace Admin.NET.Application;
///
/// 物料输出参数
///
public class MaterialsOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 名称
///
public string? Name { get; set; }
///
/// 分类
///
public long Classify { get; set; }
///
/// 编码
///
public string? CodeNum { get; set; }
///
/// 别名
///
public string? AliasName { get; set; }
///
/// 助记码
///
public string? SimpleNumber { get; set; }
///
/// 规格型号
///
public string? Specifications { get; set; }
///
/// 可用状态
///
public bool IsEnable { get; set; }
///
/// 品牌
///
public string? Brand { get; set; }
///
/// 保质期
///
public int? ShelfLife { get; set; }
///
/// 保质期单位
///
public string? ShelfLifeUnit { get; set; }
///
/// 统一零售价
///
public decimal? Price { get; set; }
///
/// 条形码
///
public string? BarCode { get; set; }
///
/// 单位组ID
///
public long? UnitGroupId { get; set; }
///
/// 基本单位
///
public string? Unit { get; set; }
///
/// 生产单位
///
public string? ProductUnit { get; set; }
///
/// 采购单位
///
public string? ProcureUnit { get; set; }
///
/// 库存单位
///
public string? InventoryUnit { get; set; }
///
/// 销售单位
///
public string? SaleUnit { get; set; }
///
/// 分销单位
///
public string? RetailStoreUnit { get; set; }
///
/// 包装关系ID
///
public long? PackagId { get; set; }
public List? PackageInfos { get; set; }
///
/// 推广ID
///
public long? PromotionId { 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; }
}