17 lines
272 B
Java
17 lines
272 B
Java
package com.example.sjkbf.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.example.sjkbf.entity.Log;
|
|
|
|
/**
|
|
* <p>
|
|
* 服务类
|
|
* </p>
|
|
*
|
|
* @author bozhiqiang
|
|
* @since 2025-09-25
|
|
*/
|
|
public interface LogService extends IService<Log> {
|
|
|
|
}
|