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