123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 系统服务
- */
- 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;
- }
- int aid;//事故id
- /**
- *事故id
- */
- public void setAid(int aid) {
- this.aid=aid;
- }
- /**
- *事故id
- */
- public int getAid() {
- return this.aid;
- }
- String source;//数据源
- /**
- *数据源
- */
- public void setSource(String source) {
- this.source=source;
- }
- /**
- *数据源
- */
- public String getSource() {
- return this.source;
- }
- String sid;//数据源ID
- /**
- *数据源ID
- */
- public void setSid(String sid) {
- this.sid=sid;
- }
- /**
- *数据源ID
- */
- public String getSid() {
- return this.sid;
- }
- String searchtag;//查询条件
- /**
- *查询条件
- */
- public void setSearchtag(String searchtag) {
- this.searchtag=searchtag;
- }
- /**
- *查询条件
- */
- public String getSearchtag() {
- return this.searchtag;
- }
- }
|