| 123456789101112131415161718192021222324 |
- using System;
- using Abp.AutoMapper;
- using System.ComponentModel.DataAnnotations;
- using IwbZero.AppServiceBase;
- namespace ShwasherSys.ProductInfo.Dto
- {
- [AutoMapTo(typeof(ProductProperty))]
- public class ProductPropertyCreateDto
- {
- /// <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; }
- public string ContentInfo { get; set; }
- }
- }
|