xuhy
2024-02-29 384bd896d3cefd65fb0bdd756ba94fd992dc6c9c
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseModel;
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 xiaochen
 * @since 2024-02-29
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_performer")
@ApiModel(value="TPerformer对象", description="演员表")
public class TPerformer extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "姓名")
    @TableField("userName")
    private String userName;
 
    @ApiModelProperty(value = "籍贯")
    @TableField("nativePlace")
    private String nativePlace;
 
    @ApiModelProperty(value = "身高")
    @TableField("personHeight")
    private Double personHeight;
 
    @ApiModelProperty(value = "体重")
    @TableField("personWeight")
    private Double personWeight;
 
    @ApiModelProperty(value = "生日")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @TableField("personBirthday")
    private LocalDateTime personBirthday;
 
    @ApiModelProperty(value = "联系电话")
    @TableField("personPhone")
    private String personPhone;
 
    @ApiModelProperty(value = "毕业院校")
    @TableField("graduationInstitution")
    private String graduationInstitution;
 
    @ApiModelProperty(value = "自我介绍")
    @TableField("selfIntroduction")
    private String selfIntroduction;
 
    @ApiModelProperty(value = "得票数")
    @TableField("gainVotesCount")
    private Integer gainVotesCount;
 
    @ApiModelProperty(value = "状态 1=正常 2=冻结")
    @TableField("status")
    private Integer status;
 
    @ApiModelProperty(value = "演员封面")
    @TableField("performerCover")
    private String performerCover;
 
    @ApiModelProperty(value = "详情图片")
    @TableField("detailPicture")
    private String detailPicture;
 
    @ApiModelProperty(value = "审核状态 1=待审核 2=通过 3=驳回")
    @TableField("auditStatus")
    private Integer auditStatus;
 
    @ApiModelProperty(value = "审核备注")
    @TableField("auditRemark")
    private String auditRemark;
 
}