fei
6 天以前 1868fe69485d0d904bba24f2672a52a626ccf9f2
archiveManager/src/main/java/com/ruoyi/domain/vo/RecordToUserCount.java
@@ -2,20 +2,21 @@
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
import org.apache.poi.ss.usermodel.IndexedColors;
@Data
public class RecordToUserCount {
    private Long userId;
    @Excel(name = "用户名称")
    @Excel(name = "用户名称", headerColor = IndexedColors.BLACK)
    private String userName;
    @Excel(name = "被分配案卷总数")
    @Excel(name = "被分配案卷总数", headerColor = IndexedColors.BLACK)
    private Long cnt;
    @Excel(name = "完成案卷数")
    @Excel(name = "完成案卷数", headerColor = IndexedColors.BLACK)
    private Long swlr;
    @Excel(name = "未上传附件")
    @Excel(name = "未上传附件", headerColor = IndexedColors.BLACK)
    private Long wlrf;
    @Excel(name = "待修改")
    @Excel(name = "待修改", headerColor = IndexedColors.BLACK)
    private Long dxg;
    @Excel(name = "未完成案卷数")
    @Excel(name = "未完成案卷数", headerColor = IndexedColors.BLACK)
    private Long ylr; 
}