Commit 58b6f65c authored by 曹盼盼's avatar 曹盼盼

修改

parent a1dc577d
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
<?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
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.TzUgpPathDao;
import com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPathMapper;
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
TzUgpPathDao tzUgpPathDao;
TzUgpPathMapper tzUgpPathMapper;
/**
* 项目流程新增、更新任务表信息
......
......@@ -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.TzUgpPathDao;
import com.yeejoin.amos.boot.module.ugp.api.mapper.TzUgpPathMapper;
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment