自动化立体仓库 - WMS系统
chen.llin
2025-12-27 8db245b3d48b24e385f7ffc343a9839ffa0bb29c
src/main/java/com/zy/asrs/service/ApiLogService.java
@@ -1,10 +1,12 @@
package com.zy.asrs.service;
import com.zy.asrs.entity.ApiLog;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.ApiLog;
public interface ApiLogService extends IService<ApiLog> {
    void save(String namespace, String url, String appkey, String ip, String request, String response, boolean success);
    boolean clearWeekBefore();
}