|
|
@ -24,8 +24,7 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:changeproperty:view")
|
|
|
|
@RequiresPermissions("system:changeproperty:view")
|
|
|
|
@GetMapping()
|
|
|
|
@GetMapping()
|
|
|
|
public String changeProperty()
|
|
|
|
public String changeProperty() {
|
|
|
|
{
|
|
|
|
|
|
|
|
return prefix + "/changeproperty";
|
|
|
|
return prefix + "/changeproperty";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -35,8 +34,7 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
@RequiresPermissions("system:changeproperty:list")
|
|
|
|
@RequiresPermissions("system:changeproperty:list")
|
|
|
|
@PostMapping("/list")
|
|
|
|
@PostMapping("/list")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
|
|
|
|
public TableDataInfo list(TdPropertyInfo tdPropertyInfo) {
|
|
|
|
{
|
|
|
|
|
|
|
|
startPage();
|
|
|
|
startPage();
|
|
|
|
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
|
|
|
|
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
|
|
|
|
return getDataTable(tdPropertyInfos);
|
|
|
|
return getDataTable(tdPropertyInfos);
|
|
|
@ -47,8 +45,7 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:changeproperty:change")
|
|
|
|
@RequiresPermissions("system:changeproperty:change")
|
|
|
|
@GetMapping("/edit/{id}")
|
|
|
|
@GetMapping("/edit/{id}")
|
|
|
|
public String change(@PathVariable("id") String id, ModelMap mmap)
|
|
|
|
public String change(@PathVariable("id") String id, ModelMap mmap) {
|
|
|
|
{
|
|
|
|
|
|
|
|
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
|
|
|
|
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
|
|
|
|
mmap.put("tdPropertyInfo", tdPropertyInfo);
|
|
|
|
mmap.put("tdPropertyInfo", tdPropertyInfo);
|
|
|
|
return prefix + "/change";
|
|
|
|
return prefix + "/change";
|
|
|
@ -61,8 +58,8 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
@Log(title = "密品变更", businessType = BusinessType.UPDATE)
|
|
|
|
@Log(title = "密品变更", businessType = BusinessType.UPDATE)
|
|
|
|
@PostMapping("/edit")
|
|
|
|
@PostMapping("/edit")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|
public AjaxResult changeSave(TdPropertyInfo tdPropertyInfo)
|
|
|
|
public AjaxResult changeSave(TdPropertyInfo tdPropertyInfo) {
|
|
|
|
{
|
|
|
|
tdPropertyInfo.setMaintainState("2");
|
|
|
|
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
|
|
|
|
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -71,8 +68,7 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:changeproperty:destory")
|
|
|
|
@RequiresPermissions("system:changeproperty:destory")
|
|
|
|
@GetMapping("/destory/{id}")
|
|
|
|
@GetMapping("/destory/{id}")
|
|
|
|
public String destory(@PathVariable("id") String id, ModelMap mmap)
|
|
|
|
public String destory(@PathVariable("id") String id, ModelMap mmap) {
|
|
|
|
{
|
|
|
|
|
|
|
|
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
|
|
|
|
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
|
|
|
|
mmap.put("tdPropertyInfo", tdPropertyInfo);
|
|
|
|
mmap.put("tdPropertyInfo", tdPropertyInfo);
|
|
|
|
return prefix + "/destory";
|
|
|
|
return prefix + "/destory";
|
|
|
@ -85,8 +81,7 @@ public class TdPropertyChangeController extends BaseController {
|
|
|
|
@Log(title = "密品变更", businessType = BusinessType.UPDATE)
|
|
|
|
@Log(title = "密品变更", businessType = BusinessType.UPDATE)
|
|
|
|
@PostMapping("/destory")
|
|
|
|
@PostMapping("/destory")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|
public AjaxResult destorySave(TdPropertyInfo tdPropertyInfo)
|
|
|
|
public AjaxResult destorySave(TdPropertyInfo tdPropertyInfo) {
|
|
|
|
{
|
|
|
|
|
|
|
|
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
|
|
|
|
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|