123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- import java.util.*;
- /**
- * 监测点结果批量获取
- */
- public class D_D10019 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- List <D_D10019_STEPTIMES_RECODE> steptimes;//横坐标
- /**
- *横坐标
- */
- public void setSteptimes(List <D_D10019_STEPTIMES_RECODE> steptimes) {
- this.steptimes=steptimes;
- }
- /**
- *横坐标
- */
- public List <D_D10019_STEPTIMES_RECODE> getSteptimes() {
- return this.steptimes;
- }
- List <D_D10019_ROWS_RECODE> rows;//数据
- /**
- *数据
- */
- public void setRows(List <D_D10019_ROWS_RECODE> rows) {
- this.rows=rows;
- }
- /**
- *数据
- */
- public List <D_D10019_ROWS_RECODE> getRows() {
- return this.rows;
- }
- }
|