using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; namespace ShwasherSys.ProductInfo.Dto { [AutoMapTo(typeof(ProductProperty))] public class ProductPropertyUpdateDto: EntityDto { /// /// 属性类别(规格1,材质2,硬度3,表色4) /// public string PropertyType { get; set; } /// /// 属性编码 /// public string PropertyNo { get; set; } public string PropertyValue { get; set; } public string DisplayValue { get; set; } /// /// 海关HS编码 /// public string HsCode { get; set; } public string ContentInfo { get; set; } } }