Merge branch 'main' into storymuchexec_250108
# Conflicts: # pom.xml
This commit is contained in:
6
pom.xml
6
pom.xml
@ -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>
|
||||
|
16
src/main/java/com/sa/zentao/mapper/ZtNoticeMapper.java
Normal file
16
src/main/java/com/sa/zentao/mapper/ZtNoticeMapper.java
Normal 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> {
|
||||
|
||||
}
|
@ -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);
|
||||
}
|
25
src/main/java/com/sa/zentao/mapper/ZtReleaseMapper.java
Normal file
25
src/main/java/com/sa/zentao/mapper/ZtReleaseMapper.java
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user