| | |
| | | public class PlanUrlServiceImpl extends ServiceImpl<PlanUrlMapper, PlanUrl> implements PlanUrlService { |
| | | |
| | | @Override |
| | | public List<Integer> selectPlanUrlIdByPlanId(Long planId) { |
| | | return this.baseMapper.selectPlanUrlIdByPlanId(planId); |
| | | } |
| | | @Override |
| | | public List<Integer> selectPlanUrlIdByPlanId(Long planId,int type,int hideUrl) { |
| | | return this.baseMapper.selectPlanUrlIdByPlanId2(planId,type,hideUrl); |
| | | public List<Integer> selectPlanUrlIdByPlanId(Long planId,int type,int hideUrl,int status) { |
| | | return this.baseMapper.selectPlanUrlIdByPlanId(planId,type,hideUrl,status); |
| | | } |
| | | |
| | | @Override |
| | | public List<PlanUrl> selectPlanUrlByPlanId(Long planId) { |
| | | return this.baseMapper.selectPlanUrlByPlanId(planId); |
| | | } |
| | | |
| | | @Override |
| | | public List<PlanUrl> selectPlanUrlByPlanId(Long planId,int type,int hideUrl) { |
| | | return this.baseMapper.selectPlanUrlByPlanId2(planId,type,hideUrl); |
| | | public List<PlanUrl> selectPlanUrlByPlanId(Long planId,int type,int hideUrl,int status) { |
| | | return this.baseMapper.selectPlanUrlByPlanId(planId,type,hideUrl,status); |
| | | } |
| | | |
| | | } |