fix:场所接口提交

pg_adapter
wangxy 8 months ago
parent daa19e41bc
commit 92781f6c05

@ -1,9 +1,16 @@
package com.ruoyi.web.controller.manager; package com.ruoyi.web.controller.manager;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.text.CharSequenceUtil;
import com.ruoyi.common.utils.ShiroUtils;
import com.ruoyi.system.domain.place.TdPlace;
import com.ruoyi.system.service.place.TdPlaceService; import com.ruoyi.system.service.place.TdPlaceService;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
/** /**
* packageName com.ruoyi.web.controller.manager * packageName com.ruoyi.web.controller.manager
@ -19,4 +26,36 @@ public class TdPlaceManager {
@Resource @Resource
private TdPlaceService placeService; private TdPlaceService placeService;
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace) {
return placeService.selectTdPlaceList(tdPlace);
}
public boolean saveOrUpdate(TdPlace tdPlace) {
if (CharSequenceUtil.isNotBlank(tdPlace.getId())) {
tdPlace.setUpdateBy(ShiroUtils.getSysUser().getLoginName());
tdPlace.setUpdateTime(new Date());
} else {
tdPlace.setCreateBy(ShiroUtils.getSysUser().getLoginName());
tdPlace.setCreateTime(new Date());
}
return placeService.saveOrUpdate(tdPlace);
}
public TdPlace selectTdPlace(String id) {
return placeService.getById(id);
}
public boolean deletedPlaceByids(String ids) {
List<String> list = Arrays.asList(Convert.toStrArray(ids));
return placeService.removeByIds(list);
}
public List<TdPlace> selectList() {
return placeService.lambdaQuery().list();
}
} }

@ -1,11 +1,19 @@
package com.ruoyi.web.controller.place; package com.ruoyi.web.controller.place;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController; 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 com.ruoyi.web.controller.manager.TdPlaceManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
/** /**
* packageName com.ruoyi.web.controller.place * packageName com.ruoyi.web.controller.place
@ -20,8 +28,106 @@ import javax.annotation.Resource;
@RequestMapping("/system/place") @RequestMapping("/system/place")
public class TdPlaceController extends BaseController { public class TdPlaceController extends BaseController {
private String prefix = "system/place";
@Resource @Resource
private TdPlaceManager placeManager; private TdPlaceManager placeManager;
@RequiresPermissions("system:place:view")
@GetMapping()
public String tdmeeting() {
return prefix + "/place";
}
/**
*
*/
@RequiresPermissions("system:place:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPlace tdPlace) {
startPage();
List<TdPlace> tdPlaces = placeManager.selectTdPlaceList(tdPlace);
return getDataTable(tdPlaces);
}
/**
*
*/
@GetMapping("/add")
public String add() {
return prefix + "/add";
}
/**
*
*/
@RequiresPermissions("system:place:add")
@Log(title = "涉密场所", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(TdPlace tdPlace) {
return toAjax(placeManager.saveOrUpdate(tdPlace));
}
/**
*
*/
@RequiresPermissions("system:place: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:place:edit")
@Log(title = "涉密场所", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdPlace tdPlace) {
return toAjax(placeManager.saveOrUpdate(tdPlace));
}
/**
*
*/
@RequiresPermissions("system:place: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";
}
/**
*
*/
@RequiresPermissions("system:place:remove")
@Log(title = "涉密场所", businessType = BusinessType.DELETE)
@PostMapping("/remove")
@ResponseBody
public AjaxResult remove(String ids) {
return toAjax(placeManager.deletedPlaceByids(ids));
}
/**
*
*
* @return com.ruoyi.common.core.domain.AjaxResult
*/
@PostMapping("/getList")
@ResponseBody
public AjaxResult getList() {
return AjaxResult.success(placeManager.selectList());
}
} }

@ -4,6 +4,8 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.place.TdPlace;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/** /**
* @author 13560 * @author 13560
* @description td_place()Mapper * @description td_place()Mapper
@ -13,6 +15,8 @@ import org.apache.ibatis.annotations.Mapper;
@Mapper @Mapper
public interface TdPlaceMapper extends BaseMapper<TdPlace> { public interface TdPlaceMapper extends BaseMapper<TdPlace> {
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace);
} }

@ -1,8 +1,11 @@
package com.ruoyi.system.service.place; package com.ruoyi.system.service.place;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.TdMeeting;
import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.place.TdPlace;
import java.util.List;
/** /**
* @author 13560 * @author 13560
* @description td_place()Service * @description td_place()Service
@ -10,4 +13,7 @@ import com.ruoyi.system.domain.place.TdPlace;
*/ */
public interface TdPlaceService extends IService<TdPlace> { public interface TdPlaceService extends IService<TdPlace> {
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace);
} }

@ -2,10 +2,14 @@ package com.ruoyi.system.service.place.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.place.TdPlace; import com.ruoyi.system.domain.place.TdPlace;
import com.ruoyi.system.mapper.TdMeetingMapper;
import com.ruoyi.system.mapper.place.TdPlaceMapper; import com.ruoyi.system.mapper.place.TdPlaceMapper;
import com.ruoyi.system.service.place.TdPlaceService; import com.ruoyi.system.service.place.TdPlaceService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
/** /**
* @author 13560 * @author 13560
* @description td_place()Service * @description td_place()Service
@ -15,6 +19,13 @@ import org.springframework.stereotype.Service;
public class TdPlaceServiceImpl extends ServiceImpl<TdPlaceMapper, TdPlace> public class TdPlaceServiceImpl extends ServiceImpl<TdPlaceMapper, TdPlace>
implements TdPlaceService { implements TdPlaceService {
@Resource
private TdPlaceMapper placeMapper;
@Override
public List<TdPlace> selectTdPlaceList(TdPlace tdPlace) {
return placeMapper.selectTdPlaceList(tdPlace);
}
} }

@ -20,4 +20,13 @@
create_by,create_time,update_by, create_by,create_time,update_by,
update_time,remark update_time,remark
</sql> </sql>
<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>
</trim>
ORDER BY create_time DESC
</select>
</mapper> </mapper>

Loading…
Cancel
Save