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.
26 lines
497 B
Java
26 lines
497 B
Java
2 years ago
|
package com.glxp.api.service.purchase;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.purchase.SupCertSetEntity;
|
||
|
import com.glxp.api.req.purchase.FilterCertSetsRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface SupCertSetService {
|
||
|
|
||
|
|
||
|
List<SupCertSetEntity> filterCertSets(FilterCertSetsRequest filterCertSetsRequest);
|
||
|
|
||
|
boolean updateCertSet(SupCertSetEntity supCertSetEntity);
|
||
|
|
||
|
boolean insertCertSet(SupCertSetEntity supCertSetEntity);
|
||
|
|
||
|
boolean deleteById(String id);
|
||
|
|
||
|
boolean deleteAll();
|
||
|
|
||
|
|
||
|
}
|