12345678910111213141516 |
- package com.fdkankan.scene.service;
- import com.fdkankan.scene.entity.SceneColdStorageLog;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 场景冷归档日志表 服务类
- * </p>
- *
- * @author
- * @since 2023-07-12
- */
- public interface ISceneColdStorageLogService extends IService<SceneColdStorageLog> {
- void saveLog(String num, String path, Integer type, Integer state, String reason);
- }
|