xunSweet / web-

0 stars 0 forks source link

分页 #8

Open xunSweet opened 6 years ago

xunSweet commented 6 years ago

package com.vrv.platform.entity;

public class PageResult { private long total; private Object rows; public long getTotal() { return total; } public Object getRows() { return rows; } public void setTotal(long total) { this.total = total; } public void setRows(Object rows) { this.rows = rows; } }

xunSweet commented 6 years ago

package com.vrv.platform.domain; /**

}