Helius
2021-03-09 8fe37f0f7af3667b60e0f29a1ce8188c08c35bb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
    } 
       
    
}