RmProductUpdateDto.cs 427 B

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