14 changed files with 227 additions and 39 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.elink.esua.epdc.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 移动端接口-积分管理模块-积分排行接口返回值 - 前十 |
||||
|
* @Author zhangyong |
||||
|
* @Date 2020-05-13 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcAppPointsRankingTopTenDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3908231797102233188L; |
||||
|
|
||||
|
/** |
||||
|
* 用户ID |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 用户昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 积分 |
||||
|
*/ |
||||
|
private Integer points; |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
package com.elink.esua.epdc.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 移动端接口-积分管理模块-积分排行接口返回值 - 用户排名信息 |
||||
|
* @Author zhangyong |
||||
|
* @Date 2020-05-13 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcAppPointsRankingUserDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3908231797102233188L; |
||||
|
|
||||
|
/** |
||||
|
* 用户ID |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 用户昵称 |
||||
|
*/ |
||||
|
private String nickName; |
||||
|
|
||||
|
/** |
||||
|
* 积分 |
||||
|
*/ |
||||
|
private Integer points; |
||||
|
|
||||
|
/** |
||||
|
* 用户个人排名 |
||||
|
*/ |
||||
|
private Integer rank; |
||||
|
} |
Loading…
Reference in new issue