1234567891011121314151617 |
- package com.fdkankan.scene.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.fdkankan.scene.entity.SceneDelLog;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2023-03-15
- */
- public interface ISceneDelLogService extends IService<SceneDelLog> {
- void saveLog(String num, Long userId);
- }
|