基础服务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
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. }