场景模型测试工具
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.
scmy/psdc-business/src/main/java/com/psdc/mapper/PsdcStrategyLogMapper.java

25 lines
539 B

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;
/**
* @AuthorStone
* @Projectpsdc
* @FilenamePsdcStrategyLogMapper
* @Slogan 致敬大师致敬未来的你
* @Date2023/6/21 9:30
* @Version 1.0
*/
@Mapper
@Repository
public interface PsdcStrategyLogMapper {
List<PsdcStrategyLog> selMyStrategyLog(@Param("userId") Long userId);
}