1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cn.lihu.jh.module.ecg.dal.dataobject.jobrecord;
|
| import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
| import com.alibaba.excel.annotation.ExcelProperty;
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Data
| public class JobRecordStatisticDO {
|
| private Integer jobType;
|
| private Long docId;
|
| private String docName;
|
| private Integer jobCount;
|
| private Integer year;
|
| private Integer month;
| }
|
|