AddLimitVo.java 1.1 KB
Newer Older
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
package cn.wisenergy.model.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.factory.annotation.Autowired;

import java.io.Serializable;

/**
 * @author 86187
 * @ Description: 添加用户查询次数Vo
 * @ Author     : 86187
 * @ Date       : 2021/1/27 10:19
 */
@Data
@ApiModel(value = "AddLimitVo")
public class AddLimitVo implements Serializable {
    private static final long serialVersionUID = -1402670785302226482L;

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

    /**
     * 支付类型 1:支付宝 2:微信  3:充值卡
     */
    @ApiModelProperty(value = "支付类型 1:支付宝 2:微信  3:充值卡", name = "payType")
    private Integer payType;

    /**
     * 支付金额
     */
    @ApiModelProperty(value = "支付金额", name = "payMoney")
    private Integer payMoney;

    /**
     * 充值卡密码
     */
    @ApiModelProperty(value = "充值卡密码", name = "password")
    private String password;
}