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 0078c988
authored
Aug 04, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
2 parents
09fa4201
84e6353d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
project-order/src/main/java/com/dituhui/pea/order/dao/MapBlockInfoDao.java
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeDao.java
project-order/src/main/java/com/dituhui/pea/order/dao/MapBlockInfoDao.java
View file @
0078c98
...
...
@@ -18,4 +18,5 @@ public interface MapBlockInfoDao extends JpaRepository<MapBlockInfoEntity, Integ
List
<
MapBlockInfoEntity
>
findByLayerId
(
String
layerId
);
MapBlockInfoEntity
findByTeamIdAndLayerId
(
String
teamId
,
String
layerId
);
}
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeDao.java
View file @
0078c98
...
...
@@ -3,8 +3,14 @@ package com.dituhui.pea.order.dao;
import
com.dituhui.pea.order.entity.MapLayerCustomizeEntity
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
java.util.List
;
public
interface
MapLayerCustomizeDao
extends
JpaRepository
<
MapLayerCustomizeEntity
,
Long
>
{
public
MapLayerCustomizeEntity
findByBranchIdAndLayerIdAndStatus
(
String
branchId
,
String
layerId
,
int
status
);
MapLayerCustomizeEntity
getByLayerId
(
String
layerId
);
List
<
MapLayerCustomizeEntity
>
findByBranchIdInAndStatus
(
List
<
String
>
branchIds
,
int
status
);
}
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