12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 犀工网
- */
- package com.miniframe.generate.comm.xigital;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 企业用户数据查询
- */
- public class A_XG0001 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 proNames;//查询名称
- /**
- *查询名称
- */
- public void setProNames(String proNames) {
- this.proNames=proNames;
- }
- /**
- *查询名称
- */
- public String getProNames() {
- return this.proNames;
- }
- String proValues;//查询值
- /**
- *查询值
- */
- public void setProValues(String proValues) {
- this.proValues=proValues;
- }
- /**
- *查询值
- */
- public String getProValues() {
- return this.proValues;
- }
- }
|