7 changed files with 110 additions and 15 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.elink.esua.epdc.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
@Data |
||||
|
public class PointsStatisticsListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8249595537995735691L; |
||||
|
|
||||
|
/** |
||||
|
* 总积分 |
||||
|
*/ |
||||
|
private int allPoints; |
||||
|
|
||||
|
/** |
||||
|
* 剩余积分 |
||||
|
*/ |
||||
|
private int residuePoints; |
||||
|
|
||||
|
/** |
||||
|
* 操作描述 |
||||
|
*/ |
||||
|
private String operationDesc; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue