修改名称
This commit is contained in:
68
src/main/java/com/rj/entity/LbAssessmentApply.java
Normal file
68
src/main/java/com/rj/entity/LbAssessmentApply.java
Normal file
@@ -0,0 +1,68 @@
|
||||
package com.rj.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@TableName("lb_assessment_apply")
|
||||
@Schema(description = "申请评估表")
|
||||
public class LbAssessmentApply implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId("id")
|
||||
@Schema(description = "主键ID(UUID)")
|
||||
private String id;
|
||||
|
||||
@TableField("tenant_id")
|
||||
@Schema(description = "租户ID")
|
||||
private Long tenantId;
|
||||
|
||||
@TableField("applicant_name")
|
||||
@Schema(description = "申请人")
|
||||
private String applicantName;
|
||||
|
||||
@TableField("applicant_phone")
|
||||
@Schema(description = "申请人电话")
|
||||
private String applicantPhone;
|
||||
|
||||
@TableField("applicant_age")
|
||||
@Schema(description = "年龄")
|
||||
private Integer applicantAge;
|
||||
|
||||
@TableField("work_experience")
|
||||
@Schema(description = "从业经历")
|
||||
private String workExperience;
|
||||
|
||||
@TableField("colleague_name")
|
||||
@Schema(description = "同事姓名")
|
||||
private String colleagueName;
|
||||
|
||||
@TableField("colleague_phone")
|
||||
@Schema(description = "同事电话")
|
||||
private String colleaguePhone;
|
||||
|
||||
@TableField("team_leader_name")
|
||||
@Schema(description = "团队长姓名")
|
||||
private String teamLeaderName;
|
||||
|
||||
@TableField("application_datetime")
|
||||
@Schema(description = "申请日期时间")
|
||||
private LocalDateTime applicationDatetime;
|
||||
|
||||
@TableField("created_at")
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createdAt;
|
||||
|
||||
@TableField("updated_at")
|
||||
@Schema(description = "修改时间")
|
||||
private LocalDateTime updatedAt;
|
||||
}
|
||||
Reference in New Issue
Block a user