/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 通用查询 */ public class A_HS0000 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String columns;//字段列表 /** *字段列表 */ public void setColumns(String columns) { this.columns=columns; } /** *字段列表 */ public String getColumns() { return this.columns; } String table;//表或试图 /** *表或试图 */ public void setTable(String table) { this.table=table; } /** *表或试图 */ public String getTable() { return this.table; } String where;//查询条件 /** *查询条件 */ public void setWhere(String where) { this.where=where; } /** *查询条件 */ public String getWhere() { return this.where; } }