UserVolunteer.java 734 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8
package cn.wisenergy.model.app;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
@ApiModel(value = "UserVolunteer")
liaoanyuan's avatar
liaoanyuan committed
9
public class UserVolunteer {
licc's avatar
licc committed
10
    /**
liaoanyuan's avatar
liaoanyuan committed
11
     * 用户方案id
licc's avatar
licc committed
12
     */
liaoanyuan's avatar
liaoanyuan committed
13
    @ApiModelProperty(value = "用户方案id",name = "id")
licc's avatar
licc committed
14 15 16 17 18 19 20 21
    private Integer id;

    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id",name = "userId")
    private Integer userId;

liaoanyuan's avatar
liaoanyuan committed
22 23 24 25 26 27
    /**
     * 方案记录id
     */
    @ApiModelProperty(value = "方案记录id",name = "schemeRecordId")
    private Integer schemeRecordId;

licc's avatar
licc committed
28 29 30 31
    /**
     * 志愿id
     */
    @ApiModelProperty(value = "志愿id",name = "volunteerId")
liaoanyuan's avatar
liaoanyuan committed
32 33
    private Integer volunteerId  ;

licc's avatar
licc committed
34
}