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.
41 lines
953 B
41 lines
953 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Win_in.Sfs.Basedata.Domain;
|
|
using Win_in.Sfs.Basedata.Domain.Shared;
|
|
using Win_in.Sfs.Shared.Domain;
|
|
using Win_in.Sfs.Shared.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Basedata.Application.Contracts;
|
|
|
|
[Display(Name = "Kitting箱")]
|
|
public class KittingDTO : EntityDto<Guid>, IHasCode, IHasName
|
|
{
|
|
[Display(Name ="编号")]
|
|
public string Code { get; set; }
|
|
[Display(Name = "名称")]
|
|
public string Name { get; set; }
|
|
|
|
[Display(Name = "明细")]
|
|
public List<KittingDetailDTO> Details { set; get; }= new List<KittingDetailDTO>();
|
|
}
|
|
|
|
public class KittingErrorDto
|
|
{
|
|
|
|
[Display(Name = "Kitting编号")]
|
|
public string Code { get; set; }
|
|
|
|
|
|
[Display(Name = "零件代码")]
|
|
public string PartCode { get; set; }
|
|
|
|
|
|
[Display(Name = "错误信息")]
|
|
public string Content { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|