package com.sandu.ximon.dao.mapper; import com.sandu.ximon.dao.domain.LedPlayerEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @Entity com.sandu.ximon.dao.domain.LedPlayerEntity */ @Mapper public interface LedPlayerEntityMapper extends BaseMapper { boolean saveLed(LedPlayerEntity ledPlayerEntity); List ledPlayerEntityList(String keyword, Long userid); }