diff --git a/src/main/java/com/zteits/oa/report/web/AsraOpController.java b/src/main/java/com/zteits/oa/report/web/AsraOpController.java new file mode 100644 index 0000000..7321ad4 --- /dev/null +++ b/src/main/java/com/zteits/oa/report/web/AsraOpController.java @@ -0,0 +1,31 @@ +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 = "日报系统-员工管理", description = "日报系统-员工管理") +@RestController +@RequestMapping("/asraOp") +public class AsraOpController { + + @Autowired + private AsraOpRueryService asraOpRueryService; + + @RequestMapping(value="/queryAsraOpPage",method = RequestMethod.POST) + public BizResult> queryAsraOpPage(@RequestBody AsraOpQueryReq asraOpQueryReq, HttpServletRequest request){ + BizResult> result = asraOpRueryService.queryAsraOpForPage(asraOpQueryReq); + return result; + } + +}