| | |
| | | @Repository |
| | | public interface PlanUrlMapper extends BaseMapper<PlanUrl> { |
| | | |
| | | List<Integer> selectPlanUrlIdByPlanId(@Param("planId") Long planId); |
| | | List<Integer> selectPlanUrlIdByPlanId2(@Param("planId") Long planId,@Param("type") int type,@Param("hideUrl") int hideUrl); |
| | | List<PlanUrl> selectPlanUrlByPlanId(@Param("planId") Long planId); |
| | | List<PlanUrl> selectPlanUrlByPlanId2(@Param("planId") Long planId,@Param("type") int type,@Param("hideUrl") int hideUrl); |
| | | |
| | | List<Integer> selectPlanUrlIdByPlanId(@Param("planId") Long planId,@Param("type") int type,@Param("hideUrl") int hideUrl,@Param("status") int status); |
| | | |
| | | List<PlanUrl> selectPlanUrlByPlanId(@Param("planId") Long planId,@Param("type") int type,@Param("hideUrl") int hideUrl,@Param("status") int status); |
| | | } |