修改名称

This commit is contained in:
2026-04-29 19:20:29 +08:00
parent 521cc30f94
commit 68d0c7ea37
6 changed files with 44 additions and 44 deletions

View 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;
}