| 1234567891011121314151617181920212223242526272829 |
- using System;
- using Abp.AutoMapper;
- using System.ComponentModel.DataAnnotations;
- using IwbZero.AppServiceBase;
- namespace ShwasherSys.ProductInfo.Dto
- {
- [AutoMapTo(typeof(ProductMapper))]
- public class ProductMapperCreateDto:IwbEntityDto<int>
- {
-
- /// <summary>
- /// 新产品编码
- /// </summary>
- public string ProductNo { get; set; }
- /// <summary>
- /// 旧产品编码
- /// </summary>
- public string PreProductNo { get; set; }
- /// <summary>
- /// 老产品是成品1/半成品2
- /// </summary>
- public int PreProductType { get; set; }
- /// <summary>
- /// 新产品是成品1/半成品2
- /// </summary>
- public int NewProductType { get; set; }
- }
- }
|