package com.gkhy.safePlatform.specialWork.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.specialWork.entity.WorkApprovalFilledItemInfo; import java.util.List; public interface WorkApprovalFilledItemInfoService extends IService { List listApprovalFilledItemInfoByWorkApplyId(Long workApplyId); List listApprovalFilledItemInfoByUnitId(Long unitId); void saveBatchFilledItemInfo(List filledItemInfos); }