package com.matrix.system.hive.action; import com.matrix.core.pojo.AjaxResult; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.hive.pojo.AllotedAndInstored; import com.matrix.system.hive.service.AllotedAndInstoredService; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import javax.annotation.Resource; /**调拨 * @author jiangyouyao * @date 2016-11-22 */ @Controller @RequestMapping(value = "admin/allottedAndInstored") public class AllotedAndInstoredController extends BaseController{ @Resource private AllotedAndInstoredService currentService; /** * 列表显示 */ @RequestMapping(value = "/showList") public @ResponseBody AjaxResult showList(AllotedAndInstored sysAllottedInfo, PaginationVO pageVo) { return showList(currentService, sysAllottedInfo, pageVo); } }