update 站点白名单

This commit is contained in:
2023-04-21 09:35:42 +08:00
parent a89870bea9
commit 7ae72733e8
6 changed files with 27 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.PileStationWhitelist;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@@ -60,4 +61,6 @@ public interface PileStationWhitelistMapper {
* @return 结果
*/
public int deletePileStationWhitelistByIds(Long[] ids);
PileStationWhitelist queryWhitelistByMemberId(@Param("stationId") String stationId, @Param("memberId") String memberId);
}