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