基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
865 B

  1. using BPA.SAAS.Manage.Comm.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods
  8. {
  9. public class GoodsDto
  10. {
  11. public string Id { get; set; }
  12. public string Name { get; set; }
  13. public string Descritption { get; set; }
  14. public string ImgUrl { get; set; }
  15. public int ImgMode { get; set; }
  16. public int Sort { get; set; }
  17. public decimal Price { get; set; }
  18. public string GoodsUintId { get; set; }
  19. public bool IsWeigh { get; set; }
  20. public string Design { get; set; }
  21. public string DefaultMate { get; set; }
  22. public bool IsAttrubute { get; set; }
  23. public string GoodsTypeId { get; set; }
  24. public string Status { get; set; }
  25. }
  26. }