Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
46964fa3
Commit
46964fa3
authored
Feb 11, 2020
by
qwmqiuwenmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口
parent
d06da236
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
139 additions
and
0 deletions
+139
-0
ApplicationApiService.java
.../gic/haoban/manage/api/service/ApplicationApiService.java
+5
-0
DepartmentApiService.java
...m/gic/haoban/manage/api/service/DepartmentApiService.java
+5
-0
StaffApiService.java
...va/com/gic/haoban/manage/api/service/StaffApiService.java
+5
-0
WxEnterpriseRelatedApiService.java
...ban/manage/api/service/WxEnterpriseRelatedApiService.java
+5
-0
ApplicationService.java
...gic/haoban/manage/service/service/ApplicationService.java
+5
-0
DepartmentService.java
.../gic/haoban/manage/service/service/DepartmentService.java
+5
-0
StaffDepartmentRelatedService.java
...manage/service/service/StaffDepartmentRelatedService.java
+5
-0
StaffService.java
...a/com/gic/haoban/manage/service/service/StaffService.java
+5
-0
WxEnterpriseRelatedService.java
...an/manage/service/service/WxEnterpriseRelatedService.java
+5
-0
ApplicationApiServiceImpl.java
...anage/service/service/impl/ApplicationApiServiceImpl.java
+7
-0
DepartmentApiServiceImpl.java
...manage/service/service/impl/DepartmentApiServiceImpl.java
+10
-0
StaffApiServiceImpl.java
...oban/manage/service/service/impl/StaffApiServiceImpl.java
+10
-0
WxEnterpriseRelatedApiServiceImpl.java
...rvice/service/impl/WxEnterpriseRelatedApiServiceImpl.java
+10
-0
ApplicationServiceImpl.java
...nage/service/service/out/impl/ApplicationServiceImpl.java
+10
-0
DepartmentServiceImpl.java
...anage/service/service/out/impl/DepartmentServiceImpl.java
+10
-0
StaffDepartmentRelatedServiceImpl.java
...e/service/out/impl/StaffDepartmentRelatedServiceImpl.java
+11
-0
StaffServiceImpl.java
...ban/manage/service/service/out/impl/StaffServiceImpl.java
+10
-0
WxEnterpriseRelatedServiceImpl.java
...vice/service/out/impl/WxEnterpriseRelatedServiceImpl.java
+10
-0
dubbo-haoban-manage-service.xml
...ervice/src/main/resources/dubbo-haoban-manage-service.xml
+6
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/ApplicationApiService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
api
.
service
;
public
interface
ApplicationApiService
{
}
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/DepartmentApiService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
api
.
service
;
public
interface
DepartmentApiService
{
}
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/StaffApiService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
api
.
service
;
public
interface
StaffApiService
{
}
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/WxEnterpriseRelatedApiService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
api
.
service
;
public
interface
WxEnterpriseRelatedApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/ApplicationService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
public
interface
ApplicationService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/DepartmentService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
public
interface
DepartmentService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffDepartmentRelatedService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
public
interface
StaffDepartmentRelatedService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/StaffService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
public
interface
StaffService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/WxEnterpriseRelatedService.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
;
public
interface
WxEnterpriseRelatedService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/ApplicationApiServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
impl
;
import
com.gic.haoban.manage.api.service.ApplicationApiService
;
public
class
ApplicationApiServiceImpl
implements
ApplicationApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/DepartmentApiServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.api.service.DepartmentApiService
;
@Service
public
class
DepartmentApiServiceImpl
implements
DepartmentApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/StaffApiServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.api.service.StaffApiService
;
@Service
public
class
StaffApiServiceImpl
implements
StaffApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/WxEnterpriseRelatedApiServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.api.service.WxEnterpriseRelatedApiService
;
@Service
public
class
WxEnterpriseRelatedApiServiceImpl
implements
WxEnterpriseRelatedApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/ApplicationServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
out
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.service.service.ApplicationService
;
@Service
public
class
ApplicationServiceImpl
implements
ApplicationService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/DepartmentServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
out
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.service.service.DepartmentService
;
@Service
public
class
DepartmentServiceImpl
implements
DepartmentService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffDepartmentRelatedServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
out
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.api.service.StaffApiService
;
import
com.gic.haoban.manage.service.service.StaffDepartmentRelatedService
;
@Service
public
class
StaffDepartmentRelatedServiceImpl
implements
StaffDepartmentRelatedService
,
StaffApiService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/StaffServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
out
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.service.service.StaffService
;
@Service
public
class
StaffServiceImpl
implements
StaffService
{
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/WxEnterpriseRelatedServiceImpl.java
0 → 100644
View file @
46964fa3
package
com
.
gic
.
haoban
.
manage
.
service
.
service
.
out
.
impl
;
import
org.springframework.stereotype.Service
;
import
com.gic.haoban.manage.service.service.WxEnterpriseRelatedService
;
@Service
public
class
WxEnterpriseRelatedServiceImpl
implements
WxEnterpriseRelatedService
{
}
haoban-manage3-service/src/main/resources/dubbo-haoban-manage-service.xml
View file @
46964fa3
...
...
@@ -22,5 +22,10 @@
<constructor-arg
index=
"0"
value=
"haoban-manage-service"
/>
</bean>
<dubbo:service
interface=
"com.gic.haoban.manage.api.service.ApplicationApiService"
ref=
"applicationApiService"
timeout=
"10000"
/>
<dubbo:service
interface=
"com.gic.haoban.manage.api.service.DepartmentApiService"
ref=
"departmentApiService"
timeout=
"10000"
/>
<dubbo:service
interface=
"com.gic.haoban.manage.api.service.StaffApiService"
ref=
"StaffApiService"
timeout=
"10000"
/>
<dubbo:service
interface=
"com.gic.haoban.manage.api.service.WxEnterpriseRelatedApiService"
ref=
"wxEnterpriseRelatedApiService"
timeout=
"10000"
/>
</beans>
\ No newline at end of file
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