12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- 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;
- }
- String searchtag;//查询条件
- /**
- *查询条件
- */
- public void setSearchtag(String searchtag) {
- this.searchtag=searchtag;
- }
- /**
- *查询条件
- */
- public String getSearchtag() {
- return this.searchtag;
- }
- String isshare;//是否公开
- /**
- *是否公开
- */
- public void setIsshare(String isshare) {
- this.isshare=isshare;
- }
- /**
- *是否公开
- */
- public String getIsshare() {
- return this.isshare;
- }
- }
|