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.
21 lines
651 B
21 lines
651 B
1 year ago
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
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 : SfsBaseDataDTOBase, IHasCode, IHasName
|
||
|
{
|
||
|
[Display(Name ="编号")]
|
||
|
public string Code { get; set; }
|
||
|
[Display(Name = "名称")]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[Display(Name = "明细")]
|
||
|
public virtual ICollection<KittingDetailDTO> Details { set; get; }= new List<KittingDetailDTO>();
|
||
|
}
|