You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
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<Guid>, IMultiTenant, IRemark
|
|
{
|
|
/// <summary>
|
|
/// 主表ID
|
|
/// </summary>
|
|
[Display(Name = "主表ID")]
|
|
public Guid MasterId { get; set; }
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
[Display(Name = "物料编码")]
|
|
public string ItemCode { set; get; }
|
|
|
|
/// <summary>
|
|
/// 物品名称
|
|
/// </summary>
|
|
[Display(Name = "物品名称")]
|
|
public string ItemName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 描述1
|
|
/// </summary>
|
|
[Display(Name = "描述1")]
|
|
public string ItemDesc1 { set; get; }
|
|
/// <summary>
|
|
/// 描述2
|
|
/// </summary>
|
|
[Display(Name = "描述2")]
|
|
public string ItemDesc2 { set; get; }
|
|
/// <summary>
|
|
/// 包装数量
|
|
/// </summary>
|
|
[Display(Name = "包装数量")]
|
|
public decimal Qty { set; get; }
|
|
|
|
/// <summary>
|
|
/// 配置
|
|
/// </summary>
|
|
[Display(Name = "配置")]
|
|
public string Conf { set; get; }
|
|
|
|
public Guid? TenantId { set; get; }
|
|
|
|
public string Remark { get; set; }
|
|
}
|
|
|