27 lines
598 B
Java
27 lines
598 B
Java
package com.peanut.common.excel;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class ContributionStatQuery {
|
|
|
|
@ExcelProperty(value = "序号")
|
|
private int no;
|
|
@ExcelProperty(value = "星级")
|
|
private String level;
|
|
@ExcelProperty(value = "姓名")
|
|
private String userName;
|
|
@ExcelProperty(value = "手机号")
|
|
private String userTel;
|
|
@ExcelProperty(value = "明细")
|
|
private String contribution;
|
|
@ExcelProperty(value = "湖分")
|
|
private BigDecimal score;
|
|
|
|
|
|
}
|