| 1234567891011121314151617181920212223242526 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- namespace ShwasherSys.ProductInfo.Dto
- {
- [AutoMapTo(typeof(ProductProperty)),AutoMapFrom(typeof(ProductProperty))]
- public class ProductPropertyDto: EntityDto<int>
- {
- /// <summary>
- /// 属性类别(规格1,材质2,硬度3,表色4,特殊处理(倒角,高度,反面,粗糙度等等) 5)
- /// </summary>
- public string PropertyType { get; set; }
- /// <summary>
- /// 属性编码
- /// </summary>
- public string PropertyNo { get; set; }
- public string PropertyValue { get; set; }
- public string DisplayValue { get; set; }
- /// <summary>
- /// 海关HS编码
- /// </summary>
- public string HsCode { get; set; }
- public string ContentInfo { get; set; }
- }
- }
|