RmProductCreateDto.cs 460 B

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