AsraOpController.java 1.21 KB
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<PageBean<AsraOpDTO>> queryAsraOpPage(@RequestBody AsraOpQueryReq asraOpQueryReq, HttpServletRequest request){
		BizResult<PageBean<AsraOpDTO>>  result = asraOpRueryService.queryAsraOpForPage(asraOpQueryReq);
		return result;
	}

}