Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
H
hzsomms
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZTGK
hzsomms
Commits
227f17c6
Commit
227f17c6
authored
Jul 05, 2023
by
hkl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:1.代码提交
parent
3c4df30d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
13 deletions
+5
-13
LightAliasController.java
...odules/subwayNetwork/controller/LightAliasController.java
+2
-2
LightRailMapper.java
...g/jeecg/modules/subwayNetwork/mapper/LightRailMapper.java
+1
-3
ILineAliasService.java
...eecg/modules/subwayNetwork/service/ILineAliasService.java
+1
-4
LightRailServiceImpl.java
...ules/subwayNetwork/service/impl/LightRailServiceImpl.java
+1
-4
No files found.
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/subwayNetwork/controller/LightAliasController.java
View file @
227f17c6
...
...
@@ -70,7 +70,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS
* @return
*/
@AutoLog
(
value
=
"线路车站-线别管理-通过id删除"
)
@ApiOperation
(
value
=
"线路车站-
轻轨线路-通过id删除"
,
notes
=
"线路车站-轻轨线路
-通过id删除"
)
@ApiOperation
(
value
=
"线路车站-
线别管理-通过id删除"
,
notes
=
"线路车站-线别管理
-通过id删除"
)
@GetMapping
(
value
=
"/delete"
)
public
Result
<
String
>
delete
(
@RequestParam
(
name
=
"id"
,
required
=
true
)
String
id
)
{
lineAliasService
.
removeById
(
id
);
...
...
@@ -84,7 +84,7 @@ public class LightAliasController extends JeecgController<LineAlias, ILineAliasS
* @return
*/
@AutoLog
(
value
=
"线路车站-线别管理-批量删除"
)
@ApiOperation
(
value
=
"线路车站-
轻轨线路-批量删除"
,
notes
=
"线路车站-轻轨线路
-批量删除"
)
@ApiOperation
(
value
=
"线路车站-
线别管理-批量删除"
,
notes
=
"线路车站-线别管理
-批量删除"
)
@GetMapping
(
value
=
"/deleteBatch"
)
public
Result
<
String
>
deleteBatch
(
@RequestParam
(
name
=
"ids"
,
required
=
true
)
String
ids
)
{
lineAliasService
.
removeByIds
(
Arrays
.
asList
(
ids
.
split
(
","
)));
...
...
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/subwayNetwork/mapper/LightRailMapper.java
View file @
227f17c6
...
...
@@ -7,9 +7,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import
org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO
;
/**
* @Description: 线路车站-轻轨线路
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Description: 线路车站-线别管理
* @Version: V1.0
*/
public
interface
LightRailMapper
extends
BaseMapper
<
LightRail
>
{
...
...
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/subwayNetwork/service/ILineAliasService.java
View file @
227f17c6
...
...
@@ -4,14 +4,11 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
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.vo.LightAliasQueryVO
;
/**
* @Description: 线路车站-轻轨线路
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Description: 线路车站-线别管理
* @Version: V1.0
*/
public
interface
ILineAliasService
extends
IService
<
LineAlias
>
{
...
...
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/subwayNetwork/service/impl/LightRailServiceImpl.java
View file @
227f17c6
...
...
@@ -12,10 +12,7 @@ import org.jeecg.modules.subwayNetwork.vo.LightRailQueryVO;
import
org.springframework.stereotype.Service
;
/**
* @Description: 线路车站-轻轨线路
* @Author: jeecg-boot
* @Date: 2023-06-14
* @Version: V1.0
* @Description: 线路车站-线别管理
*/
@Service
public
class
LightRailServiceImpl
extends
ServiceImpl
<
LightRailMapper
,
LightRail
>
implements
ILightRailService
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment