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; /** *
* 委员会-可评审专业 *
* * @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; }