统计查询导出
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user