fei
2025-09-29 ebeecf61232967a9c21ca4aa63ccec8e269b8c0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.domain.vo;
 
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
@Data
public class RecordToUserCount {
    private Long userId;
    @Excel(name = "用户名称")
    private String userName;
    @Excel(name = "被分配案卷总数")
    private Long cnt;
    @Excel(name = "完成案卷数")
    private Long swlr;
    @Excel(name = "未完成案卷数")
    private Long ylr; 
}