fix:涉密场所变更

pg_adapter
wangxy 6 months ago
parent 8848e08e14
commit 07da6d3dfc

@ -32,6 +32,10 @@ public class TdPlaceManager {
return placeService.selectTdPlaceList(tdPlace); return placeService.selectTdPlaceList(tdPlace);
} }
public List<TdPlace> selectTdPlaceChangeList(TdPlace tdPlace) {
return placeService.selectTdPlaceChangeList(tdPlace);
}
public boolean saveOrUpdate(TdPlace tdPlace) { public boolean saveOrUpdate(TdPlace tdPlace) {
@ -50,6 +54,13 @@ public class TdPlaceManager {
} }
public boolean updateChange(TdPlace tdPlace) {
tdPlace.setAfterTime(new Date());
tdPlace.setState("2");
return placeService.saveOrUpdate(tdPlace);
}
public TdPlace selectTdPlace(String id) { public TdPlace selectTdPlace(String id) {
return placeService.getById(id); return placeService.getById(id);
} }

@ -0,0 +1,91 @@
package com.ruoyi.web.controller.place;
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.place.TdPlace;
import com.ruoyi.web.controller.manager.TdPlaceManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* packageName com.ruoyi.web.controller.place
*
* @author wangxy
* @version JDK 8
* @className TdPlaceController
* @date 2024/8/13
* @description
*/
@Controller
@RequestMapping("/system/placeChange")
public class TdPlaceChangeController extends BaseController {
private String prefix = "system/placeChange";
@Resource
private TdPlaceManager placeManager;
@RequiresPermissions("system:placeChange:view")
@GetMapping()
public String place() {
return prefix + "/placeChange";
}
/**
*
*/
@RequiresPermissions("system:placeChange:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPlace tdPlace) {
startPage();
List<TdPlace> tdPlaces = placeManager.selectTdPlaceChangeList(tdPlace);
return getDataTable(tdPlaces);
}
/**
*
*/
@RequiresPermissions("system:placeChange:edit")
@GetMapping("/edit/{id}")
public String edit(@PathVariable("id") String id, ModelMap mmap) {
TdPlace tdPlace = placeManager.selectTdPlace(id);
mmap.put("tdPlace", tdPlace);
return prefix + "/edit";
}
/**
*
*/
@RequiresPermissions("system:placeChange:edit")
@Log(title = "涉密场所变更", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdPlace tdPlace) {
return toAjax(placeManager.updateChange(tdPlace));
}
/**
*
*/
@RequiresPermissions("system:placeChange:detail")
@GetMapping("/detail/{id}")
public String detail(@PathVariable("id") String id, ModelMap mmap) {
TdPlace tdPlace = placeManager.selectTdPlace(id);
mmap.put("tdPlace", tdPlace);
return prefix + "/detail";
}
}

@ -17,6 +17,9 @@ public interface TdPlaceMapper extends BaseMapper<TdPlace> {
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace); public List<TdPlace> selectTdPlaceList(TdPlace tdPlace);
public List<TdPlace> selectTdPlaceChangeList(TdPlace tdPlace);
} }

@ -16,4 +16,6 @@ public interface TdPlaceService extends IService<TdPlace> {
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace); public List<TdPlace> selectTdPlaceList(TdPlace tdPlace);
public List<TdPlace> selectTdPlaceChangeList(TdPlace tdPlace);
} }

@ -26,6 +26,11 @@ public class TdPlaceServiceImpl extends ServiceImpl<TdPlaceMapper, TdPlace>
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace) { public List<TdPlace> selectTdPlaceList(TdPlace tdPlace) {
return placeMapper.selectTdPlaceList(tdPlace); return placeMapper.selectTdPlaceList(tdPlace);
} }
@Override
public List<TdPlace> selectTdPlaceChangeList(TdPlace tdPlace) {
return placeMapper.selectTdPlaceChangeList(tdPlace);
}
} }

@ -35,4 +35,13 @@
</trim> </trim>
ORDER BY create_time DESC ORDER BY create_time DESC
</select> </select>
<select id="selectTdPlaceChangeList" resultType="com.ruoyi.system.domain.place.TdPlace">
select <include refid="Base_Column_List"/> from td_place
<trim prefix="where" prefixOverrides="and|or">
<if test="placeName!=null and placeName!=''">
AND place_name LIKE concat('%',#{placeName},'%')
</if>
</trim>
ORDER BY create_time DESC
</select>
</mapper> </mapper>

Loading…
Cancel
Save