MoniResultDO.java
1.06 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.subsidy.model;
import com.subsidy.util.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
*
* </p>
*
* @author Tuyp
* @since 2024-11-07
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("moni_result")
public class MoniResultDO extends BaseModel {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 专业名称
*/
private String majorName;
/**
* 院校
*/
private String college;
/**
* 毕业时间
*/
private String graduate;
private String exp1;
private String exp2;
private String exp3;
private String exp4;
private String exp5;
private String exp6;
private String exp7;
private String exp8;
private String exp9;
private String exp10;
private String exp11;
private String exp12;
}