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