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