基础服务api
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lignes
940 B

  1. using BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute;
  2. using BPA.SAAS.Manage.Comm.Enum;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods
  9. {
  10. public class GoodsInfoBaseView
  11. {
  12. public string Id { get; set; }
  13. public string Code { get; set; }
  14. public string Name { get; set; }
  15. public decimal Price { get; set; }
  16. public string ImgUrl { get; set; }
  17. public CommonStatus Status { get; set; }
  18. public string GoodsTypeId { get; set; }
  19. public string GoodsTypeName { get; set; }
  20. public string Remark { get; set; }
  21. public string GoodsUintId { get; set; }
  22. public string GoodsUintName { get; set; }
  23. public bool IsAttrubute { get; set; }
  24. public List<GoodsAttributeList> GoodsAttributeList { get; set; }
  25. }
  26. }