1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * 无锡发动机
- */
- package com.miniframe.generate.comm.es;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- import java.util.*;
- /**
- * 项目组件属性查询
- */
- public class D_ES0009 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- List <D_ES0009_ROWS_RECODE> rows;//数据
- /**
- *数据
- */
- public void setRows(List <D_ES0009_ROWS_RECODE> rows) {
- this.rows=rows;
- }
- /**
- *数据
- */
- public List <D_ES0009_ROWS_RECODE> getRows() {
- return this.rows;
- }
- String pcId;//项目组件Id
- /**
- *项目组件Id
- */
- public void setPcId(String pcId) {
- this.pcId=pcId;
- }
- /**
- *项目组件Id
- */
- public String getPcId() {
- return this.pcId;
- }
- String comId;//组件ID
- /**
- *组件ID
- */
- public void setComId(String comId) {
- this.comId=comId;
- }
- /**
- *组件ID
- */
- public String getComId() {
- return this.comId;
- }
- String name;//组件name
- /**
- *组件name
- */
- public void setName(String name) {
- this.name=name;
- }
- /**
- *组件name
- */
- public String getName() {
- return this.name;
- }
- }
|