Commit 227f17c6 authored by hkl's avatar hkl

feat:1.代码提交

parent 3c4df30d
...@@ -70,7 +70,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS ...@@ -70,7 +70,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS
* @return * @return
*/ */
@AutoLog(value = "线路车站-线别管理-通过id删除") @AutoLog(value = "线路车站-线别管理-通过id删除")
@ApiOperation(value = "线路车站-轻轨线路-通过id删除", notes = "线路车站-轻轨线路-通过id删除") @ApiOperation(value = "线路车站-线别管理-通过id删除", notes = "线路车站-线别管理-通过id删除")
@GetMapping(value = "/delete") @GetMapping(value = "/delete")
public Result<String> delete(@RequestParam(name = "id", required = true) String id) { public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
lineAliasService.removeById(id); lineAliasService.removeById(id);
...@@ -84,7 +84,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS ...@@ -84,7 +84,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS
* @return * @return
*/ */
@AutoLog(value = "线路车站-线别管理-批量删除") @AutoLog(value = "线路车站-线别管理-批量删除")
@ApiOperation(value = "线路车站-轻轨线路-批量删除", notes = "线路车站-轻轨线路-批量删除") @ApiOperation(value = "线路车站-线别管理-批量删除", notes = "线路车站-线别管理-批量删除")
@GetMapping(value = "/deleteBatch") @GetMapping(value = "/deleteBatch")
public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) { public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
lineAliasService.removeByIds(Arrays.asList(ids.split(","))); lineAliasService.removeByIds(Arrays.asList(ids.split(",")));
......
...@@ -7,9 +7,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; ...@@ -7,9 +7,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO; import org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO;
/** /**
* @Description: 线路车站-轻轨线路 * @Description: 线路车站-线别管理
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Version: V1.0 * @Version: V1.0
*/ */
public interface LightRailMapper extends BaseMapper<LightRail> { public interface LightRailMapper extends BaseMapper<LightRail> {
......
...@@ -4,14 +4,11 @@ import com.baomidou.mybatisplus.core.metadata.IPage; ...@@ -4,14 +4,11 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.subwayNetwork.dto.LineAliasQueryDTO; import org.jeecg.modules.subwayNetwork.dto.LineAliasQueryDTO;
import org.jeecg.modules.subwayNetwork.entity.LightRail;
import org.jeecg.modules.subwayNetwork.entity.LineAlias; import org.jeecg.modules.subwayNetwork.entity.LineAlias;
import org.jeecg.modules.subwayNetwork.vo.LightAliasQueryVO; import org.jeecg.modules.subwayNetwork.vo.LightAliasQueryVO;
/** /**
* @Description: 线路车站-轻轨线路 * @Description: 线路车站-线别管理
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Version: V1.0 * @Version: V1.0
*/ */
public interface ILineAliasService extends IService<LineAlias> { public interface ILineAliasService extends IService<LineAlias> {
......
...@@ -12,10 +12,7 @@ import org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO; ...@@ -12,10 +12,7 @@ import org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
/** /**
* @Description: 线路车站-轻轨线路 * @Description: 线路车站-线别管理
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Version: V1.0
*/ */
@Service @Service
public class LightRailServiceImpl extends ServiceImpl<LightRailMapper, LightRail> implements ILightRailService { public class LightRailServiceImpl extends ServiceImpl<LightRailMapper, LightRail> implements ILightRailService {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment