|
@@ -7,32 +7,64 @@ import lombok.Data;
|
|
|
public class JmTuangouMember {
|
|
|
|
|
|
/**
|
|
|
+ * 团购标题
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "团购标题", index = 0)
|
|
|
+ private String tgTitle;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 团购供应商
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "团购供应商", index = 1)
|
|
|
+ private String tgSupplier;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 团购物资(套餐)
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "团购物资(套餐)", index = 2)
|
|
|
+ private String tgGoods;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 价格
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "价格", index = 3)
|
|
|
+ private String tgPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最小起订量
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "最小起订量", index = 4)
|
|
|
+ private Integer tgMinNum;
|
|
|
+ /**
|
|
|
+ * 小区名称
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "小区名称", index = 5)
|
|
|
+ private String uptownName;
|
|
|
+ /**
|
|
|
* 栋
|
|
|
*/
|
|
|
- @ExcelProperty(value = "楼栋", index = 0)
|
|
|
+ @ExcelProperty(value = "楼栋", index = 6)
|
|
|
private String ridgepole;
|
|
|
/**
|
|
|
* 单元
|
|
|
*/
|
|
|
- @ExcelProperty(value = "单元", index = 1)
|
|
|
+ @ExcelProperty(value = "单元", index = 7)
|
|
|
private String unit;
|
|
|
/**
|
|
|
* 门牌号
|
|
|
*/
|
|
|
- @ExcelProperty(value = "门牌号", index = 2)
|
|
|
+ @ExcelProperty(value = "门牌号", index = 8)
|
|
|
private String houseNumber;
|
|
|
/**
|
|
|
* 参团数量
|
|
|
*/
|
|
|
- @ExcelProperty(value = "参团数量", index = 3)
|
|
|
+ @ExcelProperty(value = "参团数量", index = 9)
|
|
|
private Integer buyCount;
|
|
|
/**
|
|
|
* 联系方式
|
|
|
*/
|
|
|
- @ExcelProperty(value = "联系方式", index = 4)
|
|
|
+ @ExcelProperty(value = "联系方式", index = 10)
|
|
|
private String phone;
|
|
|
|
|
|
private Integer uptownId;
|
|
|
-
|
|
|
- private String uptownName;
|
|
|
}
|