You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
312 B
Java
14 lines
312 B
Java
2 years ago
|
package com.glxp.api.service.sync;
|
||
3 years ago
|
|
||
|
|
||
|
import com.glxp.api.entity.system.SyncDataSetEntity;
|
||
|
import com.glxp.api.res.system.SyncDataSetResponse;
|
||
|
|
||
|
public interface SyncDataSetService {
|
||
|
SyncDataSetEntity findSet();
|
||
|
|
||
|
SyncDataSetResponse selectSet();
|
||
|
|
||
|
boolean insert(SyncDataSetEntity syncDataSetEntity);
|
||
|
}
|