fix:密品设备维修提交

pg_adapter
wangxy 8 months ago
parent f07738b070
commit 22fe44f96b

@ -2,11 +2,8 @@ package com.ruoyi.web.controller.manager;
import cn.hutool.core.convert.Convert; import cn.hutool.core.convert.Convert;
import cn.hutool.core.text.CharSequenceUtil; import cn.hutool.core.text.CharSequenceUtil;
import com.ruoyi.common.utils.ShiroUtils;
import com.ruoyi.system.domain.TdPropertyEment; import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.system.domain.tdcase.TdCase;
import com.ruoyi.system.service.TdPropertyEmentService; import com.ruoyi.system.service.TdPropertyEmentService;
import com.ruoyi.system.service.tdcase.TdCaseService;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource; import javax.annotation.Resource;

@ -0,0 +1,108 @@
package com.ruoyi.web.controller.system.property;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.web.controller.manager.TdPropertyEmentManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* packageName com.ruoyi.web.controller.system.property
*
* @author wangxy
* @version JDK 8
* @className TdPropertyEmentChangeController
* @date 2024/8/20
* @description
*/
@Controller
@RequestMapping("/system/ementChange")
public class TdPropertyEmentChangeController extends BaseController {
private String prefix = "system/property/ementChange";
@Autowired
private TdPropertyEmentManager tdPropertyEmentManager;
@RequiresPermissions("system:ementChange:view")
@GetMapping()
public String ementChange() {
return prefix + "/ementChange";
}
/**
*
*/
@RequiresPermissions("system:ementChange:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPropertyEment tdPropertyEment) {
startPage();
List<TdPropertyEment> tdPropertyEments = tdPropertyEmentManager.selectEmentList(tdPropertyEment);
return getDataTable(tdPropertyEments);
}
/**
*
*/
@RequiresPermissions("system:ementChange:change")
@GetMapping("/edit/{id}")
public String ementEdit(@PathVariable("id") String id, ModelMap mmap) {
TdPropertyEment tdPropertyEment = tdPropertyEmentManager.selecttdEment(id);
mmap.put("tdPropertyEment", tdPropertyEment);
return prefix + "/ementEdit";
}
/**
*
*/
@RequiresPermissions("system:ementChange:change")
@Log(title = "涉密设备维修", businessType = BusinessType.UPDATE)
@PostMapping("/update")
@ResponseBody
public AjaxResult update(TdPropertyEment tdPropertyEment) {
tdPropertyEment.setMaintainState("2");
return toAjax(tdPropertyEmentManager.saveOrUpdate(tdPropertyEment));
}
/**
*
*/
@RequiresPermissions("system:ementChange:destory")
@GetMapping("/destory/{id}")
public String destory(@PathVariable("id") String id, ModelMap mmap) {
TdPropertyEment tdPropertyEment = tdPropertyEmentManager.selecttdEment(id);
mmap.put("tdPropertyEment", tdPropertyEment);
return prefix + "/destory";
}
/**
*
*/
@RequiresPermissions("system:ementChange:destory")
@Log(title = "涉密设备报废", businessType = BusinessType.UPDATE)
@PostMapping("/destorySave")
@ResponseBody
public AjaxResult destorySave(TdPropertyEment tdPropertyEment) {
return toAjax(tdPropertyEmentManager.saveOrUpdate(tdPropertyEment));
}
}
Loading…
Cancel
Save