|
|
@@ -1,41 +0,0 @@ |
|
|
|
package com.iformall.service; |
|
|
|
|
|
|
|
import com.iformall.common.ResultData; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import com.iformall.enums.EnumAppPlat; |
|
|
|
import com.iformall.enums.EnumPayVersion; |
|
|
|
import com.iformall.enums.EnumPayWay; |
|
|
|
import com.iformall.enums.EnumProject; |
|
|
|
import com.iformall.exception.MallinkException; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
@Service |
|
|
|
public interface QrCodeService { |
|
|
|
|
|
|
|
void downQrCode(TenantEntity tenantEntity, HttpServletRequest request, HttpServletResponse response, @RequestBody Map<String, Object> params,EnumAppPlat plat) throws MallinkException; |
|
|
|
|
|
|
|
ResultData exportQrcode(HttpServletRequest request, HttpServletResponse response, |
|
|
|
TenantEntity tenantEntity, int type, String pageUrl, String sceneParam, |
|
|
|
int withText, String text1, String text2, |
|
|
|
String name, EnumAppPlat plat); |
|
|
|
ResultData uploadQrcode(TenantEntity tenantEntity, int type, String pageUrl, String sceneParam, |
|
|
|
int withText, String text1, String text2, |
|
|
|
String name,EnumAppPlat plat); |
|
|
|
|
|
|
|
/** |
|
|
|
* 生成无限二维码 |
|
|
|
* @param project |
|
|
|
* @param plat |
|
|
|
* @param pageUrl |
|
|
|
* @param sceneParam |
|
|
|
* @param name |
|
|
|
* @param plat |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
ResultData uploadQrcode(EnumProject project,EnumAppPlat plat,String pageUrl, String sceneParam,String name); |
|
|
|
|
|
|
|
} |