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.
50 lines
1.2 KiB
50 lines
1.2 KiB
1 year ago
|
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 PartCode { set; get; }
|
||
|
/// <summary>
|
||
|
/// 描述1
|
||
|
/// </summary>
|
||
|
[Display(Name = "描述1")]
|
||
|
public string Desc1 { set; get; }
|
||
|
/// <summary>
|
||
|
/// 描述2
|
||
|
/// </summary>
|
||
|
[Display(Name = "描述2")]
|
||
|
public string Desc2 { 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; }
|
||
|
}
|