|
@@ -9,6 +9,7 @@ import com.gyee.common.model.StringUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
+import javax.xml.crypto.Data;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -41,9 +42,10 @@ public class IndicatorsController {
|
|
@RequestParam(value = "stationid",required = false) String stationid,
|
|
@RequestParam(value = "stationid",required = false) String stationid,
|
|
@RequestParam(value = "stationname",required = false) String stationname,
|
|
@RequestParam(value = "stationname",required = false) String stationname,
|
|
@RequestParam(value = "kay",required = false) String kay,
|
|
@RequestParam(value = "kay",required = false) String kay,
|
|
|
|
+ @RequestParam(value = "createtime",required = false) Data createtime,
|
|
@RequestParam(value = "pageNum",required = true) String pageNum,
|
|
@RequestParam(value = "pageNum",required = true) String pageNum,
|
|
@RequestParam(value = "pageSize",required = true) String pageSize){
|
|
@RequestParam(value = "pageSize",required = true) String pageSize){
|
|
- IPage<Indicators> list = iIndicatorsService.getList( id, stationid, stationname, kay, pageNum, pageSize) ;
|
|
|
|
|
|
+ IPage<Indicators> list = iIndicatorsService.getList( id, stationid, stationname, kay, createtime, pageNum, pageSize) ;
|
|
if (null != list){
|
|
if (null != list){
|
|
return R.ok().data(list);
|
|
return R.ok().data(list);
|
|
}else {
|
|
}else {
|