统计查询导出

This commit is contained in:
wuchunlei
2025-04-24 10:03:24 +08:00
parent e0f514d071
commit 4eae73dbd5
5 changed files with 200 additions and 4 deletions

View File

@@ -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;
}