package com.zy.crm.manager.service;
|
|
import com.zy.crm.manager.entity.PlanUrl;
|
import com.baomidou.mybatisplus.service.IService;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
public interface PlanUrlService extends IService<PlanUrl> {
|
|
List<Integer> selectPlanUrlIdByPlanId(Long planId);
|
List<Integer> selectPlanUrlIdByPlanId(Long planId,int type,int hideUrl);
|
List<PlanUrl> selectPlanUrlByPlanId(Long planId);
|
List<PlanUrl> selectPlanUrlByPlanId(Long planId,int type,int hideUrl);
|
|
}
|