diff --git a/src/main/java/com/zteits/oa/report/web/demo/DemoController.java b/src/main/java/com/zteits/oa/report/web/AsraOpController.java index 90af109..7321ad4 100644 --- a/src/main/java/com/zteits/oa/report/web/demo/DemoController.java +++ b/src/main/java/com/zteits/oa/report/web/AsraOpController.java @@ -1,30 +1,29 @@ -package com.zteits.oa.report.web.demo; - -import javax.servlet.http.HttpServletRequest; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; +package com.zteits.oa.report.web; import com.zteits.oa.api.base.bean.BizResult; import com.zteits.oa.api.base.bean.PageBean; import com.zteits.oa.api.dto.asraop.AsraOpDTO; import com.zteits.oa.api.dto.asraop.param.AsraOpQueryReq; import com.zteits.oa.api.service.report.query.AsraOpRueryService; - import io.swagger.annotations.Api; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import javax.servlet.http.HttpServletRequest; -@Api(value = "swagger测试", description = "swagger测") +@Api(value = "日报系统-员工管理", description = "日报系统-员工管理") @RestController -@RequestMapping("/demo") -public class DemoController { +@RequestMapping("/asraOp") +public class AsraOpController { + @Autowired private AsraOpRueryService asraOpRueryService; - @RequestMapping(value="/demo",method = RequestMethod.POST) - public BizResult> test(@RequestBody AsraOpQueryReq asraOpQueryReq, HttpServletRequest request){ + @RequestMapping(value="/queryAsraOpPage",method = RequestMethod.POST) + public BizResult> queryAsraOpPage(@RequestBody AsraOpQueryReq asraOpQueryReq, HttpServletRequest request){ BizResult> result = asraOpRueryService.queryAsraOpForPage(asraOpQueryReq); return result; }