forked from gzzfw/backEnd/gz-dyh

liyj
2024-10-17 f494a94882a56079d24ee41d40aabf09018aba86
dyh-service/dyh-sys/src/main/java/cn/huge/module/kind/dao/mapper/ThirdCauseMapper.java
File was renamed from dyh-service/dyh-sys/src/main/java/cn/huge/module/kind/dao/mapper/SyCauseThirdMapper.java
@@ -1,6 +1,6 @@
package cn.huge.module.kind.dao.mapper;
import cn.huge.module.kind.domain.po.SyCauseThird;
import cn.huge.module.kind.domain.po.ThirdCause;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.data.domain.PageRequest;
@@ -18,20 +18,20 @@
* @version 1.0.0
*/
@Repository
public interface SyCauseThirdMapper extends BaseMapper<SyCauseThird>{
public interface ThirdCauseMapper extends BaseMapper<ThirdCause>{
    /**
    * 更新对象
    * @param entity 对象
    */
    void updateSyCauseThird(@Param("entity") SyCauseThird entity);
    void updateSyCauseThird(@Param("entity") ThirdCause entity);
    /**
    * 条件更新对象
    * @param entity 对象
    * @param terms 条件
    */
    void updateSyCauseThirdTerms(@Param("entity") SyCauseThird entity, @Param("terms") Map<String, Object> terms);
    void updateSyCauseThirdTerms(@Param("entity") ThirdCause entity, @Param("terms") Map<String, Object> terms);
    /**
    * 根据编号物理删除
@@ -44,7 +44,7 @@
    * @param terms 查询条件集合
    * @return List<SyCauseThird>
    */
    List<SyCauseThird> listTerms(@Param("terms") Map<String, Object> terms);
    List<ThirdCause> listTerms(@Param("terms") Map<String, Object> terms);
    /**
    * 按条件查询实体总数
@@ -59,6 +59,6 @@
    * @param terms 查询条件集合
    * @return List<SyCauseThird>
    */
    List<SyCauseThird> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms);
    List<ThirdCause> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms);
}