UserCommitDto.java 1.66 KB
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10
package cn.wisenergy.model.dto;

import cn.wisenergy.model.app.ScoreInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;

/**
licc's avatar
licc committed
11
 * @author 86187
licc's avatar
licc committed
12 13 14
 * @ Description: 用户提交Dto
 * @ Author     : 86187
 * @ Date       : 2021/1/12 15:39
licc's avatar
licc committed
15
 */
licc's avatar
licc committed
16 17 18 19 20 21 22 23 24
@Data
@ApiModel(value = "UserCommitDto")
public class UserCommitDto implements Serializable {

    private static final long serialVersionUID = 361307736335983629L;

    /**
     * 用户id
     */
licc's avatar
licc committed
25
    @ApiModelProperty(value = "用户id", name = "userId")
licc's avatar
licc committed
26
    private Integer userId;
licc's avatar
licc committed
27 28 29 30

    /**
     * 用户名称
     */
licc's avatar
licc committed
31
    @ApiModelProperty(value = "用户名称", name = "userName")
licc's avatar
licc committed
32 33
    private String userName;

licc's avatar
licc committed
34 35 36
    /**
     * 用户头像
     */
licc's avatar
licc committed
37
    @ApiModelProperty(value = "用户头像", name = "headImage")
licc's avatar
licc committed
38 39
    private String headImage;

licc's avatar
licc committed
40 41 42 43

    /**
     * 性别
     */
licc's avatar
licc committed
44
    @ApiModelProperty(value = "学校", name = "school")
licc's avatar
licc committed
45 46 47 48 49
    private Integer sex;

    /**
     * 学校
     */
licc's avatar
licc committed
50
    @ApiModelProperty(value = "学校", name = "school")
licc's avatar
licc committed
51 52 53 54 55
    private String school;

    /**
     * 考生类型 1:文化课考生 2:美术生 3:体育生 4:文学编导考生
     */
licc's avatar
licc committed
56
    @ApiModelProperty(value = "考生类型 1:文化课考生 2:美术生 3:体育生 4:文学编导考生", name = "studentType")
licc's avatar
licc committed
57 58 59
    private Integer studentType;

    /**
licc's avatar
licc committed
60
     * 用户来源  1:PC 2:APP
licc's avatar
licc committed
61
     */
licc's avatar
licc committed
62
    @ApiModelProperty(value = "用户来源  1:PC 2:APP", name = "source")
licc's avatar
licc committed
63 64 65 66 67 68
    private Integer source;


    /**
     * 学生成绩信息
     */
licc's avatar
licc committed
69
    @ApiModelProperty(value = "学生成绩信息", name = "scoreInfo")
licc's avatar
licc committed
70 71
    private ScoreInfo scoreInfo;
}