package com.gkhy.safePlatform.specialWork.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.specialWork.entity.WorkHoistingInfo; import com.gkhy.safePlatform.specialWork.model.query.WorkHoistingQuery; import java.util.List; public interface WorkHoistingInfoService extends IService { /** * 新增 * @param workHoistingInfo * @return */ int saveOne(WorkHoistingInfo workHoistingInfo); /** * 修改 * @param workHoistingInfo * @return */ int updateOne(WorkHoistingInfo workHoistingInfo); /** * 单条删除 * @param id * @return */ int updateStatusById(Long id); /** * 批量删除 * @param idList * @return */ int updateStatutsByIds(List idList); /** * 根据id获取数据 * @param id * @return */ // WorkHoistingInfo getById(Long id); /** * 条件查询 * @param query * @return */ List getListByConditions(WorkHoistingQuery query); }