Merge branch 'main' into storymuchexec_250108

# Conflicts:
#	pom.xml
This commit is contained in:
2025-01-08 10:54:35 +08:00
4 changed files with 71 additions and 0 deletions

View File

@ -116,6 +116,12 @@
<!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>-->
<!-- <version>4.2.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>-->
<!-- <version>3.5.5</version>-->
<!-- </dependency>-->
<dependency>

View File

@ -0,0 +1,16 @@
package com.sa.zentao.mapper;
import com.sa.zentao.entity.ZtNotice;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author gqb
* @since 2024-12-26
*/
public interface ZtNoticeMapper extends BaseMapper<ZtNotice> {
}

View File

@ -0,0 +1,24 @@
package com.sa.zentao.mapper;
import com.sa.zentao.dao.ZtStoryDTO;
import com.sa.zentao.entity.ZtReleaseDetails;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.sa.zentao.qo.ZtReleaseQo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* <p>
* Mapper 接口
* </p>
*
* @author gqb
* @since 2024-12-26
*/
public interface ZtReleaseDetailsMapper extends BaseMapper<ZtReleaseDetails> {
List<ZtStoryDTO> releasePageList(@Param("qo") ZtReleaseQo qo);
List<ZtStoryDTO> storyPageList(@Param("qo") ZtReleaseQo qo);
}

View File

@ -0,0 +1,25 @@
package com.sa.zentao.mapper;
import com.sa.zentao.dao.ZtReleaseDTO;
import com.sa.zentao.dao.ZtStoryDTO;
import com.sa.zentao.entity.ZtRelease;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.sa.zentao.qo.ZtReleaseQo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* <p>
* Mapper 接口
* </p>
*
* @author gqb
* @since 2024-12-26
*/
public interface ZtReleaseMapper extends BaseMapper<ZtRelease> {
List<ZtReleaseDTO> pageList(@Param("qo") ZtReleaseQo qo);
List<ZtStoryDTO> storyPageList(@Param("qo")ZtReleaseQo qo,@Param("ids") List<Integer> ids);
}