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
39a56a98
Commit
39a56a98
authored
Apr 19, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:新增企微报错列表
parent
7d220d92
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
8 deletions
+42
-8
QywxErrorLogApiService.java
...gic/haoban/manage/api/service/QywxErrorLogApiService.java
+1
-1
QywxErrorLogController.java
.../haoban/manage/web/controller/QywxErrorLogController.java
+34
-0
QywxErrorLogService.java
...ic/haoban/manage/service/service/QywxErrorLogService.java
+1
-1
TabQywxErrorLogServiceImpl.java
...nage/service/service/impl/TabQywxErrorLogServiceImpl.java
+2
-2
QywxErrorLogApiServiceImpl.java
.../service/service/out/impl/QywxErrorLogApiServiceImpl.java
+4
-4
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/
Tab
QywxErrorLogApiService.java
→
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/QywxErrorLogApiService.java
View file @
39a56a98
...
@@ -10,7 +10,7 @@ import com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO;
...
@@ -10,7 +10,7 @@ import com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO;
* @author mozhu
* @author mozhu
* @date 2022-04-18 15:28:02
* @date 2022-04-18 15:28:02
*/
*/
public
interface
Tab
QywxErrorLogApiService
{
public
interface
QywxErrorLogApiService
{
/**
/**
* 新增数据
* 新增数据
...
...
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/QywxErrorLogController.java
0 → 100644
View file @
39a56a98
package
com
.
gic
.
haoban
.
manage
.
web
.
controller
;
import
com.gic.api.base.commons.Page
;
import
com.gic.commons.webapi.reponse.RestResponse
;
import
com.gic.haoban.manage.api.dto.QywxErrorLogDTO
;
import
com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO
;
import
com.gic.haoban.manage.api.service.QywxErrorLogApiService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* @author mozhu
* @date 2022/4/19 14:27
*/
@RestController
@RequestMapping
(
"/qywx-error"
)
public
class
QywxErrorLogController
extends
WebBaseController
{
@Autowired
private
QywxErrorLogApiService
qywxErrorLogApiService
;
/**
* 企微报错列表
* @param qywxErrorLogListQDTO
* @return
*/
@RequestMapping
(
value
=
"qywx-error-list"
,
method
=
RequestMethod
.
POST
)
public
RestResponse
wxEnterpriseListNew
(
QywxErrorLogListQDTO
qywxErrorLogListQDTO
)
{
Page
<
QywxErrorLogDTO
>
qywxErrorLogDTOPage
=
qywxErrorLogApiService
.
queryListByPage
(
qywxErrorLogListQDTO
);
return
RestResponse
.
successResult
(
qywxErrorLogDTOPage
);
}
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/
Tab
QywxErrorLogService.java
→
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/QywxErrorLogService.java
View file @
39a56a98
...
@@ -12,7 +12,7 @@ import java.util.List;
...
@@ -12,7 +12,7 @@ import java.util.List;
* @author mozhu
* @author mozhu
* @date 2022-04-18 15:28:02
* @date 2022-04-18 15:28:02
*/
*/
public
interface
Tab
QywxErrorLogService
{
public
interface
QywxErrorLogService
{
/**
/**
* 新增数据
* 新增数据
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/impl/TabQywxErrorLogServiceImpl.java
View file @
39a56a98
...
@@ -5,7 +5,7 @@ import com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO;
...
@@ -5,7 +5,7 @@ import com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO;
import
com.gic.haoban.manage.service.dao.mapper.TabQywxErrorLogMapper
;
import
com.gic.haoban.manage.service.dao.mapper.TabQywxErrorLogMapper
;
import
com.gic.haoban.manage.service.entity.TabQywxErrorLog
;
import
com.gic.haoban.manage.service.entity.TabQywxErrorLog
;
import
com.gic.haoban.manage.service.pojo.bo.TabQywxErrorLogBO
;
import
com.gic.haoban.manage.service.pojo.bo.TabQywxErrorLogBO
;
import
com.gic.haoban.manage.service.service.
Tab
QywxErrorLogService
;
import
com.gic.haoban.manage.service.service.QywxErrorLogService
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
...
@@ -20,7 +20,7 @@ import java.util.List;
...
@@ -20,7 +20,7 @@ import java.util.List;
* @date 2022-04-18 15:28:02
* @date 2022-04-18 15:28:02
*/
*/
@Service
@Service
public
class
TabQywxErrorLogServiceImpl
implements
Tab
QywxErrorLogService
{
public
class
TabQywxErrorLogServiceImpl
implements
QywxErrorLogService
{
@Autowired
@Autowired
private
TabQywxErrorLogMapper
tabQywxErrorLogMapper
;
private
TabQywxErrorLogMapper
tabQywxErrorLogMapper
;
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/
Tab
QywxErrorLogApiServiceImpl.java
→
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/QywxErrorLogApiServiceImpl.java
View file @
39a56a98
...
@@ -6,9 +6,9 @@ import com.gic.haoban.common.utils.EntityUtil;
...
@@ -6,9 +6,9 @@ import com.gic.haoban.common.utils.EntityUtil;
import
com.gic.haoban.common.utils.PageUtil
;
import
com.gic.haoban.common.utils.PageUtil
;
import
com.gic.haoban.manage.api.dto.QywxErrorLogDTO
;
import
com.gic.haoban.manage.api.dto.QywxErrorLogDTO
;
import
com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO
;
import
com.gic.haoban.manage.api.dto.qdto.QywxErrorLogListQDTO
;
import
com.gic.haoban.manage.api.service.
Tab
QywxErrorLogApiService
;
import
com.gic.haoban.manage.api.service.QywxErrorLogApiService
;
import
com.gic.haoban.manage.service.pojo.bo.TabQywxErrorLogBO
;
import
com.gic.haoban.manage.service.pojo.bo.TabQywxErrorLogBO
;
import
com.gic.haoban.manage.service.service.
Tab
QywxErrorLogService
;
import
com.gic.haoban.manage.service.service.QywxErrorLogService
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -23,10 +23,10 @@ import java.util.List;
...
@@ -23,10 +23,10 @@ import java.util.List;
* @date 2022-04-18 15:28:02
* @date 2022-04-18 15:28:02
*/
*/
@Service
@Service
public
class
TabQywxErrorLogApiServiceImpl
implements
Tab
QywxErrorLogApiService
{
public
class
QywxErrorLogApiServiceImpl
implements
QywxErrorLogApiService
{
@Autowired
@Autowired
private
Tab
QywxErrorLogService
tabQywxErrorLogService
;
private
QywxErrorLogService
tabQywxErrorLogService
;
@Override
@Override
public
void
insertQywxErrorLog
(
String
param
)
{
public
void
insertQywxErrorLog
(
String
param
)
{
...
...
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