package com.qxgmat.data.relation; import com.qxgmat.data.dao.entity.ExercisePaper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * Created by gaojie on 2017/11/9. */ public interface ExercisePaperRelationMapper { List groupPlace( @Param("structId") Number structId ); List listWithUser( @Param("structId") Number structId, @Param("userId") Number userId, @Param("logic") String logic, @Param("logicExtend") String logicExtend, @Param("times") Integer times ); }