团餐订单
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.
 
 

55 lines
1.7 KiB

  1. using BPA.KitChen.GroupMealOrder.Core.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.KitChen.GroupMealOrder.Application.Service.WeighOrder.Dtos
  8. {
  9. public class GoodsInfoBaseView
  10. {
  11. public string Id { get; set; }
  12. public string Code { get; set; }
  13. public string Name { get; set; }
  14. public decimal Price { get; set; }
  15. public string ImgUrl { get; set; }
  16. public CommonStatus Status { get; set; }
  17. public string GoodsTypeId { get; set; }
  18. public string GoodsTypeName { get; set; }
  19. public string Remark { get; set; }
  20. public string GoodsUintId { get; set; }
  21. public string GoodsUintName { get; set; }
  22. public bool IsAttrubute { get; set; }
  23. public List<GoodsAttributeList> GoodsAttributeList { get; set; }
  24. }
  25. public class GoodsAttributeList
  26. {
  27. public string GoodsAttributeId { get; set; }
  28. /// <summary>
  29. /// 属性名称
  30. /// </summary>
  31. public string AttributeName { get; set; }
  32. /// <summary>
  33. /// 商品小类id
  34. /// </summary>
  35. public string GoodsTypeId { get; set; }
  36. public int Sort { get; set; }
  37. public List<GoodsAttributeValueList> GoodsAttributeValueList { get; set; }
  38. }
  39. public class GoodsAttributeValueList
  40. {
  41. public string GoodsAttributeValuId { get; set; }
  42. /// <summary>
  43. ///商品属性id
  44. /// </summary>
  45. public string GoodsAttributeId { get; set; }
  46. /// <summary>
  47. /// 属性值
  48. /// </summary>
  49. public string AttributeValue { get; set; }
  50. public int Sort { get; set; }
  51. }
  52. }