1 changed files with 33 additions and 0 deletions
@ -0,0 +1,33 @@ |
|||
package com.zdxt.code.service; |
|||
|
|||
import com.zdxt.code.domain.EnterprisePubQrcode; |
|||
import org.springframework.web.multipart.MultipartFile; |
|||
|
|||
import javax.servlet.http.HttpServletResponse; |
|||
import java.util.List; |
|||
|
|||
public interface IEnterprisePubQrcodeService { |
|||
EnterprisePubQrcode selectEnterprisePubQrcodeById(String id); |
|||
|
|||
List<EnterprisePubQrcode> selectEnterprisePubQrcodeList(EnterprisePubQrcode enterprisePubQrcode); |
|||
|
|||
int insertEnterprisePubQrcode(EnterprisePubQrcode enterprisePubQrcode); |
|||
|
|||
int updateEnterprisePubQrcode(EnterprisePubQrcode enterprisePubQrcode); |
|||
|
|||
int deleteEnterprisePubQrcodeByIds(String ids); |
|||
|
|||
int deleteEnterprisePubQrcodeById(String id); |
|||
|
|||
String importEnterprisePubQrcode(MultipartFile file) throws Exception; |
|||
|
|||
String matchSelectEnterprise(String ids) throws Exception; |
|||
|
|||
String forceMatch(String id) throws Exception; |
|||
|
|||
void downloadPdf(String ids, HttpServletResponse response) throws Exception; |
|||
|
|||
String generatePdfFile(String ids) throws Exception; |
|||
|
|||
int batchUpdateDownloadStatus(String ids, String downloadStatus, String remark); |
|||
} |
|||
Loading…
Reference in new issue