18 lines
485 B
Java
18 lines
485 B
Java
package quant.rich.emoney.mapper.postgre;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import quant.rich.emoney.entity.postgre.EmoneyIndex;
|
|
import quant.rich.emoney.entity.postgre.StockStrategy;
|
|
|
|
@Component
|
|
@Mapper
|
|
@DS("postgre")
|
|
public interface StockStrategyMapper extends BaseMapper<StockStrategy> {
|
|
|
|
}
|