xuhy
2024-12-11 0a1533fd30ec1a2f4624ccda4ff11f2535ea8a46
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 委员会-可评审专业
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_committee_major")
@ApiModel(value="TCommitteeMajor对象", description="委员会-可评审专业")
public class TCommitteeMajor implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("committee_id")
    private Long committeeId;
    @TableField("technical_id")
    private Long technicalId;
    @TableField("major_id")
    private Long majorId;
    @TableField("level_id")
    private Long levelId;
 
    @ApiModelProperty(value = "职称系列名称")
    @TableField("technical_name")
    private String technicalName;
 
    @ApiModelProperty(value = "专业名称")
    @TableField("major_name")
    private String majorName;
 
    @TableField("create_by")
    private Long createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
@TableLogic
@TableField("is_delete")
private Integer isDelete;
 
 
}