Merge remote-tracking branch 'origin/new-exam' into new-exam

pg_adapter
20918 6 months ago
commit 1398bc4af7

@ -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,13 +54,22 @@ 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);
} }
public boolean deletedPlaceByids(String ids) { public boolean deletedPlaceByids(String ids) {
List<String> list = Arrays.asList(Convert.toStrArray(ids)); List<String> list = Arrays.asList(Convert.toStrArray(ids));
return placeService.removeByIds(list); return placeService.lambdaUpdate()
.in(TdPlace::getId,list)
.set(TdPlace::getState,"0").update();
} }
public List<TdPlace> selectList() { public List<TdPlace> selectList() {

@ -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);
}
} }

@ -26,6 +26,16 @@
update_time,remark update_time,remark
</sql> </sql>
<select id="selectTdPlaceList" resultType="com.ruoyi.system.domain.place.TdPlace"> <select id="selectTdPlaceList" 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>
AND state !='0'
</trim>
ORDER BY create_time DESC
</select>
<select id="selectTdPlaceChangeList" resultType="com.ruoyi.system.domain.place.TdPlace">
select <include refid="Base_Column_List"/> from td_place select <include refid="Base_Column_List"/> from td_place
<trim prefix="where" prefixOverrides="and|or"> <trim prefix="where" prefixOverrides="and|or">
<if test="placeName!=null and placeName!=''"> <if test="placeName!=null and placeName!=''">

Loading…
Cancel
Save