PayPageDto.java 378 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package cn.wisenergy.model.dto;
/**
 * @ Description: 支付页面接口请求参数Dto
 * @ Author     : 86187
 * @ Date       : 2021/2/1 13:57
 */

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

/**
 * @author 86187
 */
@Data
@ApiModel("PayPageDto")
public class PayPageDto {
    /**
     * 支付金额  :金额不能为0
     */
licc's avatar
licc committed
20
    private Integer total;
licc's avatar
licc committed
21
}