JmTuangouMember.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.bofeng.entity;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import lombok.Data;
  4. @Data
  5. public class JmTuangouMember {
  6. /**
  7. * 团购标题
  8. */
  9. @ExcelProperty(value = "团购标题", index = 0)
  10. private String tgTitle;
  11. /**
  12. * 团购供应商
  13. */
  14. @ExcelProperty(value = "团购供应商", index = 1)
  15. private String tgSupplier;
  16. /**
  17. * 团购物资(套餐)
  18. */
  19. @ExcelProperty(value = "团购物资(套餐)", index = 2)
  20. private String tgGoods;
  21. /**
  22. * 价格
  23. */
  24. @ExcelProperty(value = "价格", index = 3)
  25. private String tgPrice;
  26. /**
  27. * 最低起送
  28. */
  29. @ExcelProperty(value = "最低起送", index = 4)
  30. private Integer tgMinNum;
  31. /**
  32. * 小区名称
  33. */
  34. @ExcelProperty(value = "小区名称", index = 5)
  35. private String uptownName;
  36. /**
  37. * 栋
  38. */
  39. @ExcelProperty(value = "楼栋", index = 6)
  40. private String ridgepole;
  41. /**
  42. * 单元
  43. */
  44. @ExcelProperty(value = "单元", index = 7)
  45. private String unit;
  46. /**
  47. * 门牌号
  48. */
  49. @ExcelProperty(value = "门牌号", index = 8)
  50. private String houseNumber;
  51. /**
  52. * 参团数量
  53. */
  54. @ExcelProperty(value = "参团数量", index = 9)
  55. private Integer buyCount;
  56. /**
  57. * 联系方式
  58. */
  59. @ExcelProperty(value = "联系方式", index = 10)
  60. private String phone;
  61. /**
  62. * 备注
  63. */
  64. @ExcelProperty(value = "备注", index = 11)
  65. private String myRemark;
  66. private Integer uptownId;
  67. }