package com.cn.tianji.service; import com.baomidou.mybatisplus.extension.service.IService; import com.cn.tianji.entity.YjRealTimeLog; import java.util.List; public interface YjRealTimeLogService extends IService { void saveRealTimeLog(List jhLit); void updateBatchJhStatus(); List getRealTimeLogJhList(); }