package com.gkhy.safePlatform.specialWork.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.specialWork.entity.WorkApplyRecordInfo; import com.gkhy.safePlatform.specialWork.model.query.db.WorkApplyRecordListDBQuery; import java.util.List; public interface WorkApplyRecordInfoService extends IService { List listByConditions(WorkApplyRecordListDBQuery dbQuery); }