|
@@ -2,6 +2,7 @@ package com.sooka.jnb.highServer.mapper;
|
|
|
|
|
|
import com.sooka.jnb.highServer.domain.JnbHighServer;
|
|
import com.sooka.jnb.highServer.domain.JnbHighServer;
|
|
import com.sooka.jnb.highServer.vo.JnbHighServerVO;
|
|
import com.sooka.jnb.highServer.vo.JnbHighServerVO;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -18,7 +19,7 @@ public interface JnbHighServerMapper {
|
|
* @param id 高频服务主键
|
|
* @param id 高频服务主键
|
|
* @return 高频服务
|
|
* @return 高频服务
|
|
*/
|
|
*/
|
|
- public JnbHighServerVO selectJnbHighServerById(Long id,Integer type);
|
|
|
|
|
|
+ public JnbHighServerVO selectJnbHighServerById(@Param("id") Long id, @Param("type") Integer type);
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询高频服务列表
|
|
* 查询高频服务列表
|
|
@@ -50,7 +51,7 @@ public interface JnbHighServerMapper {
|
|
* @param id 高频服务主键
|
|
* @param id 高频服务主键
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
- public int deleteJnbHighServerById(Long id,Integer type);
|
|
|
|
|
|
+ public int deleteJnbHighServerById(@Param("id") Long id, @Param("type") Integer type);
|
|
|
|
|
|
/**
|
|
/**
|
|
* 批量删除高频服务
|
|
* 批量删除高频服务
|
|
@@ -58,5 +59,5 @@ public interface JnbHighServerMapper {
|
|
* @param ids 需要删除的数据主键集合
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
- public int deleteJnbHighServerByIds(Long[] ids,Integer type);
|
|
|
|
|
|
+ public int deleteJnbHighServerByIds(@Param("ids") Long[] ids, @Param("type") Integer type);
|
|
}
|
|
}
|