Skip to content

Commit

Permalink
[taotao-cloud-project-1822] update[ version to 2022.12 ]
Browse files Browse the repository at this point in the history
  • Loading branch information
shuigedeng committed Nov 27, 2022
1 parent 93960e4 commit 9f597b5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
org.springframework.context.ApplicationContextInitializer=\
com.taotao.cloud.core.initializer.CoreApplicationContextInitializer, \
com.taotao.cloud.core.initializer.BannerInitializer
org.springframework.context.ApplicationListener=\
org.springframework.boot.context.ApplicationPidFileWriter, \
org.springframework.boot.web.context.WebServerPortFileWriter
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

/**
* 简化查询结果
*
* @author lingting 2021/1/26 10:34
*/
public class AliPayQuery {

Expand All @@ -38,14 +36,19 @@ public static AliPayQuery of(AlipayTradeQueryResponse raw) {
}

// 信息
query.setCode(raw.getCode()).setMsg(raw.getMsg()).setSubCode(raw.getSubCode())
.setSubMsg(raw.getSubMsg());
query.setCode(raw.getCode());
query.setMsg(raw.getMsg());
query.setSubCode(raw.getSubCode());
query.setSubMsg(raw.getSubMsg());

// 基础数据
return query.setTradeNo(raw.getTradeNo()).setSn(raw.getOutTradeNo())
.setId(raw.getBuyerLogonId())
.setUserId(raw.getBuyerUserId()).setUserName(raw.getBuyerUserName())
.setUserType(raw.getBuyerUserType());
query.setTradeNo(raw.getTradeNo());
query.setSn(raw.getOutTradeNo());
query.setId(raw.getBuyerLogonId());
query.setUserId(raw.getBuyerUserId());
query.setUserName(raw.getBuyerUserName());
query.setUserType(raw.getBuyerUserType());
return query;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import com.taotao.cloud.pay.wxpay.wx.domain.WxDomain;
import com.taotao.cloud.pay.wxpay.wx.enums.RequestSuffix;
import com.taotao.cloud.pay.wxpay.wx.enums.SignType;
import com.taotao.cloud.pay.wxpay.wx.enums.TradeType;
import com.taotao.cloud.pay.wxpay.wx.response.WxPayCallback;
import com.taotao.cloud.pay.wxpay.wx.response.WxPayOrderQueryResponse;
import com.taotao.cloud.pay.wxpay.wx.response.WxPayResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.taotao.cloud.web.annotation.TaoTaoCloudApplication;
import java.io.File;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.context.ApplicationPidFileWriter;

/**
* TaoTaoCloudSysApplication 抑制java9 module 报错
Expand Down Expand Up @@ -51,6 +52,7 @@ public static void main(String[] args) {
}

public static void setNacosProperty() {
ApplicationPidFileWriter
/**
* 设置nacos客户端日志和快照目录
*
Expand Down

0 comments on commit 9f597b5

Please sign in to comment.