using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace ShwasherSys.ProductInfo.Dto { [AutoMapTo(typeof(StandardDetail)),AutoMapFrom(typeof(StandardDetail))] public class StandardDetailDto: EntityDto { public int StandardId { get; set; } public string Specs { get; set; } public string StandardName { get; set; } public decimal? InnerDiameter1 { get; set; } public decimal? InnerDiameter2 { get; set; } public decimal? OutDiameter1 { get; set; } public decimal? OutDiameter2 { get; set; } public decimal? Thickness1 { get; set; } public decimal? Thickness2 { get; set; } public decimal? Height1 { get; set; } public decimal? Height2 { get; set; } public decimal? InnerChamfer1 { get; set; } public decimal? InnerChamfer2 { get; set; } public decimal? OutChamfer1 { get; set; } public decimal? OutChamfer2 { get; set; } public decimal? ThousandWeigh { get; set; } public string StandardAbbr { get; set; } public string StandardAbbrName { get; set; } public string StandardFullName { get; set; } public string Model { get; set; } } }