| 123456789101112131415161718192021222324252627282930 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ShwasherSys.ProductInfo.Dto
- {
- [AutoMapTo(typeof(ProductMapper))]
- public class ProductMapperUpdateDto: 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; }
- }
- }
|