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

titan.lightbatis.common.CommonPageResult Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package titan.lightbatis.common;

import lombok.Data;

@Data
public class CommonPageResult extends CommonResult {
    private int totalSize = 0;
    protected CommonPageResult(long code, String message, T data) {
        super(code, message, data);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy