ShyActivityMapper.java
360 Bytes
package com.cnlive.shenhe.mapper;
import com.cnlive.shenhe.entity.ShyActivity;
import org.apache.ibatis.annotations.Param;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
public interface ShyActivityMapper extends Mapper<ShyActivity> {
List<Integer> selectAllByExempt_from_trial(@Param("exempt_from_trial") Integer exempt_from_trial);
}