RmProductDto.cs 407 B

123456789101112131415
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.ProductInfo.Dto
  5. {
  6. [AutoMapTo(typeof(RmProduct)),AutoMapFrom(typeof(RmProduct))]
  7. public class RmProductDto: EntityDto<string>
  8. {
  9. public string ProductName { get; set; }
  10. public string Material { get; set; }
  11. public string Model { get; set; }
  12. public string ProductDesc { get; set; }
  13. }
  14. }