You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
539 B
25 lines
539 B
2 years ago
|
package com.psdc.mapper;
|
||
|
|
||
|
import com.psdc.entity.PsdcStrategyLog;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @Author:Stone
|
||
|
* @Project:psdc
|
||
|
* @Filename:PsdcStrategyLogMapper
|
||
|
* @Slogan 致敬大师,致敬未来的你
|
||
|
* @Date:2023/6/21 9:30
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Mapper
|
||
|
@Repository
|
||
|
public interface PsdcStrategyLogMapper {
|
||
|
|
||
|
List<PsdcStrategyLog> selMyStrategyLog(@Param("userId") Long userId);
|
||
|
|
||
|
}
|