/** * 气动设计 */ package com.miniframe.generate.comm.ac; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 项目查询 */ public class A_AC00001 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String pid;//项目id /** *项目id */ public void setPid(String pid) { this.pid=pid; } /** *项目id */ public String getPid() { return this.pid; } String name;//项目名称 /** *项目名称 */ public void setName(String name) { this.name=name; } /** *项目名称 */ public String getName() { return this.name; } 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; } }