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
890 B

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.KitChen.GroupMeal.Application.Service.Device.PushDto.Goods
  8. {
  9. public class GoodsInfoDto
  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 Sort { get; set; }
  16. public decimal Price { get; set; }
  17. public string GoodsUintId { get; set; }
  18. public string GoodsUintName { 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 GoodsTypeName { get; set; }
  25. }
  26. }