1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| package com.billion.main.sys.domain;
|
| import com.billion.common.annotation.Excel;
| import com.billion.common.core.domain.BaseEntity;
| import lombok.Data;
|
| /**
| * sys_count
| *
| * @author Billion
| * @date 2024-11-20
| */
| @Data
| public class SysCount extends BaseEntity
| {
|
| /** ID */
| private Long id;
|
| /** 工单编号 */
| @Excel(name = "年份")
| private String year;
|
| /** 总成序列号 */
| @Excel(name = "流水号")
| private Long serialNumber;
|
| /** 总成序列号 */
| @Excel(name = "流水号")
| private Long headNumber;
| /** 总成序列号 */
| @Excel(name = "流水号")
| private Long preNumber;
|
|
|
| }
|
|