ShyCommentsMapper.java
344 Bytes
package com.cnlive.shenhe.mapper;
import com.cnlive.shenhe.entity.ShyComments;
import org.apache.ibatis.annotations.Param;
import tk.mybatis.mapper.common.Mapper;
public interface ShyCommentsMapper extends Mapper<ShyComments> {
ShyComments selectBySpId(@Param("id") Integer id,
@Param("spId") Integer spId);
}