1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.xcong.excoin.modules.station.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.xcong.excoin.modules.station.entity.StrategyStatus;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * 策略状态 DAO
| */
| public interface StrategyStatusDao extends BaseMapper<StrategyStatus> {
|
| /**
| * 按 apiKeyMd5 查询唯一状态记录
| */
| StrategyStatus selectByApiKeyMd5(@Param("apiKeyMd5") String apiKeyMd5);
| }
|
|