fix: application 接口返回 user 对象
This commit is contained in:
@@ -1,11 +1,7 @@
|
||||
package net.geedge.asw.module.app.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import net.geedge.asw.module.app.entity.ApplicationLogEntity;
|
||||
|
||||
public interface IApplicationLogService extends IService<ApplicationLogEntity> {
|
||||
Page queryList(String id);
|
||||
|
||||
Page compare(String id1, String id2);
|
||||
}
|
||||
|
||||
@@ -18,4 +18,8 @@ public interface IApplicationService extends IService<ApplicationEntity>{
|
||||
void removeApplication(List<String> ids);
|
||||
|
||||
ApplicationEntity queryByApplicationAndLog(String id, String version);
|
||||
|
||||
Page compare(String id1, String id2);
|
||||
|
||||
List<ApplicationEntity> queryLogList(String id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user