记得上下班打卡 | git大法好,push需谨慎

Commit 1861bbb5 authored by wanglele's avatar wanglele

兑换码sku--->时间

parent 849e9436
package com.liquidnet.service.goblin.dto.vo;
import lombok.Data;
import java.util.ArrayList;
@Data
public class PageInfoVo {
/**
* 总个数
*/
private int total;
private Object list;
public PageInfoVo(){
}
public PageInfoVo(ArrayList<GoblinNftExActivityVo> goblinNftExActivityArrayList, int count,int num) {
this.list = goblinNftExActivityArrayList;
total= count;
}
public PageInfoVo(ArrayList<GoblinNftExCodeVo> goblinNftExCodeVos,int count){
this.list = goblinNftExCodeVos;
total= count;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment