| 123456789101112131415161718192021222324252627 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- namespace ShwasherSys.ProductInfo.Dto
- {
- [AutoMapTo(typeof(ProductMapper)),AutoMapFrom(typeof(ProductMapper))]
- public class ProductMapperDto: EntityDto<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; }
- }
- }
|