| | |
| | | package com.ruoyi.account.vo; |
| | | |
| | | import com.alibaba.nacos.shaded.org.checkerframework.checker.units.qual.A; |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @ApiModelProperty("用户id") |
| | | private Long id; |
| | | @ApiModelProperty("用户姓名") |
| | | @Excel(name = "用户姓名") |
| | | private String name; |
| | | @ApiModelProperty("绿电分总数") |
| | | @Excel(name = "绿电分总数") |
| | | private Integer totalPoint; |
| | | @ApiModelProperty("已使用绿电分数") |
| | | @Excel(name = "已使用绿电分数") |
| | | private Integer usePoint; |
| | | @ApiModelProperty("可用绿电分数") |
| | | @Excel(name = "可用绿电分数") |
| | | private Integer availablePoint; |
| | | @ApiModelProperty("用户名idStr") |
| | | private String idStr; |
| | | } |