using System; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; using IwbZero.AppServiceBase; namespace ShwasherSys.ProductInfo.Dto { [AutoMapTo(typeof(StandardDetail))] public class StandardDetailCreateDto:IwbEntityDto { public int StandardId { get; set; } [Required] [StringLength(StandardDetail.SpecsMaxLength)] public string Specs { get; set; } [Required] [StringLength(StandardDetail.StandardNameMaxLength)] public string StandardName { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string InnerDiameter1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string InnerDiameter2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string OutDiameter1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string OutDiameter2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string Thickness1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string Thickness2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string Height1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string Height2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string InnerChamfer1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string InnerChamfer2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string OutChamfer1 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string OutChamfer2 { get; set; } [StringLength(StandardDetail.NumMaxLength)] public string ThousandWeigh { get; set; } } }