package com.bofeng.entity; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; @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 = 6) private String ridgepole; /** * 单元 */ @ExcelProperty(value = "单元", index = 7) private String unit; /** * 门牌号 */ @ExcelProperty(value = "门牌号", index = 8) private String houseNumber; /** * 参团数量 */ @ExcelProperty(value = "参团数量", index = 9) private Integer buyCount; /** * 联系方式 */ @ExcelProperty(value = "联系方式", index = 10) private String phone; /** * 备注 */ @ExcelProperty(value = "备注", index = 11) private String myRemark; private Integer uptownId; }