123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package test;
- import com.github.pagehelper.PageInfo;
- import com.gyee.SpringbootStart;
- import com.gyee.frame.common.domain.AjaxResult;
- import com.gyee.frame.common.spring.SpringUtils;
- import com.gyee.frame.controller.warn.MainBrownouts2Controller;
- import com.gyee.frame.model.custom.MainBrownoutsVo;
- import com.gyee.frame.model.custom.Tablepar;
- import lombok.SneakyThrows;
- import org.springframework.boot.SpringApplication;
- import java.util.Calendar;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- public class MainBrownouts2ControllerTest {
- @SneakyThrows
- public static void main(String[] args) {
- SpringApplication.run(SpringbootStart.class, args);
- // String wtId="MG01_03";
- String wpId="MHS_FDC";
- String year="2021";
- String month="1";
- MainBrownouts2Controller mainBrownouts2Controller= SpringUtils.getBean("mainBrownouts2Controller");
- Tablepar tablepar=new Tablepar();
- tablepar.setPageNum(1);
- tablepar.setPageSize(10);
- tablepar.setOrderByColumn(null);
- tablepar.setIsAsc(null);
- Calendar c = Calendar.getInstance();
- c.set(Calendar.HOUR_OF_DAY, 0);
- c.set(Calendar.MINUTE, 0);
- c.set(Calendar.SECOND, 0);
- c.set(Calendar.DAY_OF_MONTH,1);
- c.set(Calendar.MONTH,0);
- c.set(Calendar.YEAR,2021);
- Date beginDate = c.getTime();
- c.add(Calendar.DAY_OF_MONTH,1);
- Date endDate = c.getTime();
- AjaxResult result= mainBrownouts2Controller.getBrownoutsList(tablepar,"MHS_FDC","2021-05-01","2021-05-10");
- PageInfo<MainBrownoutsVo> pageinfo=(PageInfo<MainBrownoutsVo>)result.get("data");
- List<MainBrownoutsVo> list=(List<MainBrownoutsVo>)pageinfo.getList();
- if(!list.isEmpty())
- {
- Map<String,Object> map= mainBrownouts2Controller.getBrownouts(list.get(1).getId());
- System.out.println(map.size());
- }
- // AjaxResult ar = singleAnalysisController.singleanalysisSub(wtId,year,month);
- //
- // Map<String,Object> map=( Map<String,Object>)ar.get("data");
- // for(SingleAnalysisVo wtd:vos)
- // {
- // System.out.println(wtd.getXfqr()+"----------------"+wtd.getXfqrhgl());
- // }
- //
- // AjaxResult ar = singleAnalysisController.singleanalysisChart(wtId,year,month);
- //
- // Map<String, List<SingleAnalysisVo>> map=( Map<String,List<SingleAnalysisVo>>)ar.get("data");
- // List<SingleAnalysisVo> vos=map.get("ff");
- // for(SingleAnalysisVo wtd:vos)
- // {
- // System.out.println(wtd.getFdl()+"----------------"+wtd.getFs());
- // }
- //
- // System.out.println("---------------------------------------------------------------------------------");
- // vos=map.get("ws");
- // for(SingleAnalysisVo wtd:vos)
- // {
- // System.out.println(wtd.getGzss()+"----------------"+wtd.getJxss()+"----------------"+wtd.getXdss()
- // +"----------------"+wtd.getXnss()+"----------------"+wtd.getSlss());
- // }
- // System.out.println("---------------------------------------------------------------------------------");
- // vos=map.get("jd");
- // for(SingleAnalysisVo wtd:vos)
- // {
- // System.out.println(wtd.getJfpl()+"----------------"+wtd.getTjxs());
- // }
- //
- //
- //
- }
- }
|