123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 事故数据查询
- */
- public class A_D00003 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;
- }
- String searchtag;//查询条件
- /**
- *查询条件
- */
- public void setSearchtag(String searchtag) {
- this.searchtag=searchtag;
- }
- /**
- *查询条件
- */
- public String getSearchtag() {
- return this.searchtag;
- }
- }
|