|
|
|
@@ -4,6 +4,7 @@ import com.iformall.common.ErrorCode; |
|
|
|
import com.iformall.common.ResultData; |
|
|
|
import com.iformall.domain.vo.WxMerchantVo; |
|
|
|
import com.iformall.service.WxMerchantService; |
|
|
|
import com.iformall.utils.HashUtil; |
|
|
|
import io.swagger.annotations.ApiImplicitParam; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.slf4j.Logger; |
|
|
|
@@ -35,7 +36,7 @@ public class WxMerchantController extends BaseController { |
|
|
|
} |
|
|
|
HashMap<String, String> params = new HashMap<String, String>(); |
|
|
|
params.put("tenantId", getTenantId()); |
|
|
|
params.put("merchantCode", merchantCode); |
|
|
|
params.put("merchantCode", HashUtil.DecodeByMD5(merchantCode)); |
|
|
|
WxMerchantVo wxMerchant = wxMerchantService.getMerchantInfo(params); |
|
|
|
return new ResultData(wxMerchant); |
|
|
|
} |
|
|
|
|