using System; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; using Volo.Abp.MultiTenancy; using Win_in.Sfs.Basedata.Domain.Shared; using Win_in.Sfs.Shared.Application.Contracts; using Win_in.Sfs.Shared.Domain; namespace Win_in.Sfs.Basedata.Application.Contracts; [Display(Name = "Kitting箱明细")] public class KittingDetailDTO: AuditedEntityDto, IMultiTenant, IRemark { /// /// 主表ID /// [Display(Name = "主表ID")] public Guid MasterId { get; set; } /// /// 物料编码 /// [Display(Name = "物料编码")] public string ItemCode { set; get; } /// /// 物品名称 /// [Display(Name = "物品名称")] public string ItemName { get; set; } /// /// 描述1 /// [Display(Name = "描述1")] public string ItemDesc1 { set; get; } /// /// 描述2 /// [Display(Name = "描述2")] public string ItemDesc2 { set; get; } /// /// 包装数量 /// [Display(Name = "包装数量")] public decimal Qty { set; get; } /// /// 配置 /// [Display(Name = "配置")] public string Conf { set; get; } public Guid? TenantId { set; get; } public string Remark { get; set; } }