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