Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 13c90b45
authored
Jul 27, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
1 parent
3ead7a1a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeMPDao.java
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerMPDao.java
project-order/src/main/java/com/dituhui/pea/order/dao/OrgTeamMPDao.java
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeMPDao.java
View file @
13c90b4
...
...
@@ -3,7 +3,11 @@ package com.dituhui.pea.order.dao;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.dituhui.pea.order.entity.MapLayerCustomize
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Select
;
@Mapper
public
interface
MapLayerCustomizeMPDao
extends
BaseMapper
<
MapLayerCustomize
>
{
@Select
(
"select * from map_layer_customize where layer_id=#{layerId}"
)
MapLayerCustomize
getByLayerId
(
String
layerId
);
}
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerMPDao.java
View file @
13c90b4
...
...
@@ -2,8 +2,13 @@ package com.dituhui.pea.order.dao;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.dituhui.pea.order.entity.MapLayer
;
import
com.dituhui.pea.order.entity.MapLayerCustomize
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Select
;
@Mapper
public
interface
MapLayerMPDao
extends
BaseMapper
<
MapLayer
>
{
@Select
(
"select * from MapLayer where layer_id=#{layerId}"
)
MapLayer
getByLayerId
(
String
layerId
);
}
project-order/src/main/java/com/dituhui/pea/order/dao/OrgTeamMPDao.java
View file @
13c90b4
...
...
@@ -3,7 +3,10 @@ package com.dituhui.pea.order.dao;
import
com.dituhui.pea.order.entity.OrgTeam
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Select
;
@Mapper
public
interface
OrgTeamMPDao
extends
BaseMapper
<
OrgTeam
>
{
@Select
(
"select * from org_team where team_id=#{teamId}"
)
OrgTeam
getByTeamId
(
String
teamId
);
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment