Fancy
2024-07-03 4fbe2431794ce4842a4a7d1a7242d53db86182ef
pms-parent/pms-web-station/src/main/java/com/dy/pmsStation/workOrder/WorkOrderCtrl.java
@@ -2,8 +2,13 @@
import com.dy.common.webUtil.BaseResponse;
import com.dy.common.webUtil.BaseResponseUtils;
import com.dy.pmsGlobal.pojoBa.BaUser;
import com.dy.pmsGlobal.pojoPlt.PltProduct;
import com.dy.pmsGlobal.pojoPlt.PltStation;
import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan;
import com.dy.pmsGlobal.pojoPr.PrProductionNode;
import com.dy.pmsGlobal.pojoSta.StaAssemblyWorkLast;
import jakarta.validation.Valid;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@@ -23,18 +28,34 @@
        this.sv = workOrderSv;
    }
    /**
     * 查询用户信息
     * @param
     * @return
     */
    @GetMapping(path="getUserInfo")
    public BaseResponse<BaUser> getUserInfo(String userId) throws Exception {
        BaUser userInfo  = sv.getUserInfo(userId);
        return BaseResponseUtils.buildSuccess(userInfo);
    }
    /**
     * 查询工站是否已经被占用
     * @param
     * @return
     */
    @GetMapping(path="isStationUsed")
    public BaseResponse<Boolean> isStationUsed(StaAssemblyWorkLast last){
        String message = sv.isStationUsed(last);
        if ("".equals(message)) {
            return BaseResponseUtils.buildSuccess(true);
        } else {
            return BaseResponseUtils.buildFail(message);
        }
    @GetMapping(path="getStationInfo")
    public BaseResponse<PltStation> getStationInfo(String stationId){
        PltStation stationInfo  = sv.getStationInfo(stationId);
        return BaseResponseUtils.buildSuccess(stationInfo);
    }
    /**
     * 查询工站是否已经被占用
     * @param
     * @return
     */
    @GetMapping(path="checkStationUsed")
    public BaseResponse<StaAssemblyWorkLast> checkStationUsed(String stationId){
        StaAssemblyWorkLast stationInfo  = sv.checkStationUsed(stationId);
        return BaseResponseUtils.buildSuccess(stationInfo);
    }
    /**
     * 查询全部执行中的组装任务清单
@@ -42,14 +63,120 @@
     * @return
     */
    @GetMapping(path="planList")
    public BaseResponse<List<PrAssemblyPlan>> selectOnLineList(){
    public BaseResponse<List<PrAssemblyPlan>> selectAssyPlanList(){
        PrAssemblyPlan params = new PrAssemblyPlan();
        params.setStatus(1);
        List<PrAssemblyPlan> list = sv.selectAssyPlanList(params);
        return BaseResponseUtils.buildSuccess(list);
    }
    /**
     * 根据组装任务查询节点信息
     * @param
     * @return
     */
   /* @GetMapping(path="nodeList")
    public BaseResponse<List<PrAssemblyPlan>> selectOnLineList(String processId){
        PrAssemblyPlan params = new PrAssemblyPlan();
        params.setStatus(1);
        List<PrAssemblyPlan> list = sv.selectList(params);
        return BaseResponseUtils.buildSuccess(list);
    }*/
    /**
     * 保存登录信息
     * @param
     * @return
     */
    @PostMapping(path="save")
    public BaseResponse<StaAssemblyWorkLast> save(@RequestBody @Valid QueryVo last){
        StaAssemblyWorkLast result = sv.save(last);
        return BaseResponseUtils.buildSuccess(result);
    }
    /**
     * 保存登出信息
     * @param
     * @return
     */
    @PostMapping(path="logout")
    public BaseResponse<Boolean> logout(String id){
        int count = sv.logout(id);
        if (count <= 0) {
            return BaseResponseUtils.buildFail("数据库存储失败");
        } else {
            return BaseResponseUtils.buildSuccess(true);
        }
    }
    /**
     * 添加单个辅助人员
     * @param
     * @return
     */
    @PostMapping(path="addAssistant")
    public BaseResponse<Boolean> addAssistant(String workId ,String assistant){
        log.info("WorkOrderCtrl.addAssistant()");
        int  count = sv.addAssistant(workId,assistant);
        if (count <= 0) {
            return BaseResponseUtils.buildFail("数据库存储失败");
        } else {
            return BaseResponseUtils.buildSuccess(true);
        }
    }
    /**
     * 删除单个辅助人员
     * @param
     * @return
     */
    @PostMapping(path="removeAssistant")
    public BaseResponse<Boolean> removeAssistant(String workId ,String assistant){
        log.info("WorkOrderCtrl.removeAssistant()");
        int  count = sv.removeAssistant(workId,assistant);
        if (count <= 0) {
            return BaseResponseUtils.buildFail("数据库存储失败");
        } else {
            return BaseResponseUtils.buildSuccess(true);
        }
    }
    /**
     * 查询辅助人员信息表
     * @param
     * @return
     */
    @GetMapping(path="getAssistantList")
    public BaseResponse<List<BaUser>> getAssistantList(String workId){
        List<BaUser> result = sv.getAssistantList(workId);
        return BaseResponseUtils.buildSuccess(result);
    }
    /**
     * 保存登录信息
     * @param
     * @return
     */
    @PostMapping(path="updateAssistant")
    public BaseResponse<List<BaUser>> updateAssistant(@RequestBody QueryVo vo){
        List<BaUser> result = sv.updateAssistant(vo);
        return BaseResponseUtils.buildSuccess(result);
    }
    /**
     * 根据节点的查出节点作业指导书
     * @param
     * @return
     */
    @GetMapping(path="getSopByNodeId")
    public BaseResponse<PrProductionNode> getSopByNodeId(String nodeId){
        PrProductionNode result = sv.getSopByNodeId(nodeId);
        return BaseResponseUtils.buildSuccess(result);
    }
    /**
     * 根据产品查出产品文件 主要技术参数
     * @param
     * @return
     */
    @GetMapping(path="getFileByProId")
    public BaseResponse<PltProduct> getFileByProId(String proId){
        PltProduct result = sv.getFileByProId(proId);
        return BaseResponseUtils.buildSuccess(result);
    }
    @GetMapping(path = "test")
    public BaseResponse test() {
        log.info("test");