All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.common.model.BaseListTotalModel Maven / Gradle / Ivy

package cn.ipokerface.common.model;

import java.util.List;

/**
 * Created by       PokerFace
 * Create Date      2021/4/12.
 * Email:
 * Version          1.0.0
 * 

* Description: */ public class BaseListTotalModel extends BaseListModel{ private long total = 0; public BaseListTotalModel() { } public BaseListTotalModel(List list) { super(list); } public BaseListTotalModel(List list, long total) { super(list); this.total = total; } public long getTotal() { return total; } public void setTotal(long total) { this.total = total; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy