zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.sch.manualshift.controller;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
import com.shlanbao.tzsc.base.controller.BaseController;
import com.shlanbao.tzsc.base.mapping.MdManualShift;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.sch.manualshift.service.ManualShiftServiceI;
 
@Controller
@RequestMapping("/pms/manualShift")
public class ManualShiftController extends BaseController{
    @Autowired
    private ManualShiftServiceI service;
    /** 查询*/
    @ResponseBody
    @RequestMapping("/getList")
    public MdManualShift getList(MdManualShift bean,PageParams pageParams){
        try {
            return service.getManualShift("1","S");
        } catch (Exception e) {
            log.error(message, e);
        }
        return null;
    }
}