| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.ylx.massage.service;
- import java.util.List;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ylx.common.core.domain.model.LoginUser;
- import com.ylx.massage.domain.MaProject;
- import com.ylx.massage.domain.dto.MassageAllMerchantsDto;
- import com.ylx.massage.domain.vo.MaProjectListVo;
- import com.ylx.massage.domain.vo.MaProjectSaveVo;
- import com.ylx.massage.domain.vo.MassageAllMerchantsVo;
- import com.ylx.massage.domain.vo.MassageProjectRecommendVo;
- import com.ylx.project.domain.bookMerchant.dto.BookMerchantDTO;
- import com.ylx.project.domain.bookMerchant.vo.BookMerchantVO;
- /**
- * 服务项目Service接口
- *
- * @author ylx
- * @date 2024-03-20
- */
- public interface IMaProjectService extends IService<MaProject>
- {
- /**
- * 查询服务项目
- *
- * @param id 服务项目主键
- * @return 服务项目
- */
- public MaProjectListVo selectMaProjectById(Long id);
- /**
- * 查询服务项目列表
- *
- * @param maProject 服务项目
- * @return 服务项目集合
- */
- public List<MaProjectListVo> selectMaProjectList(MaProject maProject);
- /**
- * 新增服务项目
- *
- * @param maProject 服务项目
- * @return 结果
- */
- public int insertMaProject(MaProjectSaveVo maProject, LoginUser loginUser);
- /**
- * 修改服务项目
- *
- * @param maProject 服务项目
- * @return 结果
- */
- public int updateMaProject(MaProject maProject);
- /**
- * 批量删除服务项目
- *
- * @param ids 需要删除的服务项目主键集合
- * @return 结果
- */
- public int deleteMaProjectByIds(String[] ids);
- /**
- * 删除服务项目信息
- *
- * @param id 服务项目主键
- * @return 结果
- */
- public int deleteMaProjectById(Long id);
- Page<MassageProjectRecommendVo> getMassageProjectRecommend(Page<MassageProjectRecommendVo> page,String cityCode);
- Page<MassageAllMerchantsVo> getMassageAllMerchants(Page<MassageAllMerchantsVo> page, MassageAllMerchantsDto dto);
- Page<BookMerchantVO> selectMerchantList(Page<BookMerchantVO> page, BookMerchantDTO dto);
- }
|