Commit de043183 authored by 廖旭伟's avatar 廖旭伟

窗口人员考核汇总明细增加字段

parent b75bef0d
......@@ -3,6 +3,7 @@ package com.mortals.xhx.module.window.web;
import com.alibaba.fastjson.JSONObject;
import com.mortals.framework.common.Rest;
import com.mortals.framework.model.Context;
import com.mortals.framework.model.OrderCol;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.common.code.FillStatusEnum;
import com.mortals.xhx.common.code.SelfLevelEnum;
......@@ -16,6 +17,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
/**
......@@ -50,6 +52,7 @@ public class WindowPerformController extends BaseCRUDJsonBodyMappingController<W
JSONObject jsonObject = new JSONObject();
String busiDesc = "查询所有汇总表" + this.getModuleDesc();
try {
query.setOrderColList(Arrays.asList(new OrderCol("fillDate", OrderCol.DESCENDING)));
Rest<List<WindowPerformAllVo>> allRest = this.service.getAllList(query, getContext());
// Rest<List<String>> performMonthRest = this.service.getPerformMonthList(getContext());
if(YesNoEnum.YES.getValue()== allRest.getCode()){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment