Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
58b6f65c
Commit
58b6f65c
authored
Dec 12, 2022
by
曹盼盼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a1dc577d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
12 deletions
+32
-12
TzUgpPathMapper.java
...join/amos/boot/module/ugp/api/mapper/TzUgpPathMapper.java
+19
-0
TzUgpPathMapper.xml
...ule-ugp-api/src/main/resources/mapper/TzUgpPathMapper.xml
+8
-0
TaskServiceImpl.java
...mos/boot/module/ugp/biz/service/impl/TaskServiceImpl.java
+2
-8
TzUgpPathServiceImpl.java
...oot/module/ugp/biz/service/impl/TzUgpPathServiceImpl.java
+3
-4
No files found.
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/java/com/yeejoin/amos/boot/module/ugp/api/mapper/TzUgpPathMapper.java
0 → 100644
View file @
58b6f65c
package
com
.
yeejoin
.
amos
.
boot
.
module
.
ugp
.
api
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yeejoin.amos.boot.module.ugp.api.entity.TzUgpPath
;
import
com.yeejoin.amos.boot.module.ugp.api.entity.Verify
;
import
org.apache.ibatis.annotations.Mapper
;
/**
* 页面路径表(TzUgpPath)表数据库访问层
*
* @author makejava
* @since 2022-12-09 18:52:40
*/
@Mapper
public
interface
TzUgpPathMapper
extends
BaseMapper
<
TzUgpPath
>
{
}
\ No newline at end of file
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/resources/mapper/TzUgpPathMapper.xml
0 → 100644
View file @
58b6f65c
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPathMapper"
>
</mapper>
\ No newline at end of file
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/service/impl/TaskServiceImpl.java
View file @
58b6f65c
package
com
.
yeejoin
.
amos
.
boot
.
module
.
ugp
.
biz
.
service
.
impl
;
import
com.alibaba.fastjson.JSONObject
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.yeejoin.amos.boot.biz.common.bo.ReginParams
;
import
com.yeejoin.amos.boot.module.ugp.api.Enum.*
;
import
com.yeejoin.amos.boot.module.ugp.api.dto.TaskDto
;
import
com.yeejoin.amos.boot.module.ugp.api.entity.*
;
import
com.yeejoin.amos.boot.module.ugp.api.mapper.TaskMapper
;
import
com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPath
Dao
;
import
com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPath
Mapper
;
import
com.yeejoin.amos.boot.module.ugp.api.service.TaskService
;
import
com.yeejoin.amos.boot.module.ugp.biz.framework.BusinessIdentify
;
import
org.apache.tomcat.util.buf.UEncoder
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.querydsl.QPageRequest
;
import
org.springframework.stereotype.Service
;
import
org.typroject.tyboot.core.foundation.utils.ValidationUtil
;
import
org.typroject.tyboot.core.rdbms.service.BaseService
;
import
javax.xml.crypto.Data
;
import
java.util.*
;
/**
...
...
@@ -48,7 +42,7 @@ public class TaskServiceImpl extends BaseService<TaskDto, Task, TaskMapper> impl
ProjectInitiationServiceImpl
projectInitiationService
;
@Autowired
TzUgpPath
Dao
tzUgpPathDao
;
TzUgpPath
Mapper
tzUgpPathMapper
;
/**
* 项目流程新增、更新任务表信息
...
...
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/service/impl/TzUgpPathServiceImpl.java
View file @
58b6f65c
...
...
@@ -2,13 +2,11 @@ package com.yeejoin.amos.boot.module.ugp.biz.service.impl;
import
com.yeejoin.amos.boot.module.ugp.api.dto.TzUgpPathDto
;
import
com.yeejoin.amos.boot.module.ugp.api.entity.TzUgpPath
;
import
com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPath
Dao
;
import
com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPath
Mapper
;
import
com.yeejoin.amos.boot.module.ugp.api.service.TzUgpPathService
;
import
org.springframework.stereotype.Service
;
import
org.typroject.tyboot.core.rdbms.service.BaseService
;
import
javax.annotation.Resource
;
import
java.util.List
;
/**
* 页面路径表(TzUgpPath)表服务实现类
*
...
...
@@ -16,6 +14,6 @@ import java.util.List;
* @since 2022-12-09 18:52:42
*/
@Service
public
class
TzUgpPathServiceImpl
extends
BaseService
<
TzUgpPathDto
,
TzUgpPath
,
TzUgpPathDao
>
implements
TzUgpPathService
{
public
class
TzUgpPathServiceImpl
extends
BaseService
<
TzUgpPathDto
,
TzUgpPath
,
TzUgpPathMapper
>
implements
TzUgpPathService
{
}
\ 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