1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 项目查询
- */
- public class A_C00001 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int count;//每页显示条数
- /**
- *每页显示条数
- */
- public void setCount(int count) {
- this.count=count;
- }
- /**
- *每页显示条数
- */
- public int getCount() {
- return this.count;
- }
- int page;//当前页数
- /**
- *当前页数
- */
- public void setPage(int page) {
- this.page=page;
- }
- /**
- *当前页数
- */
- public int getPage() {
- return this.page;
- }
- }
|