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.
|
|
|
package com.glxp.api.service.purchase;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.glxp.api.entity.purchase.SupCertSetEntity;
|
|
|
|
import com.glxp.api.req.purchase.FilterCertSetsRequest;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface SupCertSetService extends IService<SupCertSetEntity> {
|
|
|
|
|
|
|
|
|
|
|
|
List<SupCertSetEntity> filterCertSets(FilterCertSetsRequest filterCertSetsRequest);
|
|
|
|
|
|
|
|
boolean updateCertSet(SupCertSetEntity supCertSetEntity);
|
|
|
|
|
|
|
|
boolean insertCertSet(SupCertSetEntity supCertSetEntity);
|
|
|
|
|
|
|
|
boolean deleteById(String id);
|
|
|
|
|
|
|
|
boolean deleteAll();
|
|
|
|
|
|
|
|
|
|
|
|
}
|