123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package org.dromara.web.service;
- import org.dromara.common.mybatis.core.page.PageQuery;
- import org.dromara.common.mybatis.core.page.TableDataInfo;
- import org.dromara.web.domain.bo.TreatmentUserBo;
- import org.dromara.web.domain.vo.TreatmentUserVo;
- import java.util.Collection;
- import java.util.List;
- /**
- * 【请填写功能名称】Service接口
- *
- * @author Lion Li
- * @date 2025-06-24
- */
- public interface ITreatmentUserService {
- /**
- * 查询【请填写功能名称】
- *
- * @param id 主键
- * @return 【请填写功能名称】
- */
- TreatmentUserVo queryById(Long id);
- /**
- * 分页查询【请填写功能名称】列表
- *
- * @param bo 查询条件
- * @param pageQuery 分页参数
- * @return 【请填写功能名称】分页列表
- */
- TableDataInfo<TreatmentUserVo> queryPageList(TreatmentUserBo bo, PageQuery pageQuery);
- /**
- * 查询符合条件的【请填写功能名称】列表
- *
- * @param bo 查询条件
- * @return 【请填写功能名称】列表
- */
- List<TreatmentUserVo> queryList(TreatmentUserBo bo);
- /**
- * 新增【请填写功能名称】
- *
- * @param bo 【请填写功能名称】
- * @return 是否新增成功
- */
- Boolean insertByBo(TreatmentUserBo bo);
- /**
- * 修改【请填写功能名称】
- *
- * @param bo 【请填写功能名称】
- * @return 是否修改成功
- */
- Boolean updateByBo(TreatmentUserBo bo);
- /**
- * 校验并批量删除【请填写功能名称】信息
- *
- * @param ids 待删除的主键集合
- * @param isValid 是否进行有效性校验
- * @return 是否删除成功
- */
- Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
- /*根据患者的诊疗卡号查询患者的就诊记录*/
- List<TreatmentUserVo> queryListByTreatNum(String treatNum);
- }
|