using System.ComponentModel.DataAnnotations; namespace Win_in.Sfs.Scp.WebApi.Parts { /// /// 零件创建Dto /// public class PartCreateDTO : PartCreateOrUpdateDTOBase { /// /// 代码(Code) /// [Display(Name = "代码")] public string Code { get; set; } } }