1
0
mirror of synced 2025-12-20 23:58:05 +08:00

🎨 修复测试代码

This commit is contained in:
Binary Wang
2021-10-31 23:51:51 +08:00
parent 7b4ba553ac
commit e343159e3a
7 changed files with 10 additions and 8 deletions

View File

@@ -3,6 +3,7 @@ package com.github.binarywang.wxpay.bean.result;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
import org.w3c.dom.Document;
@@ -18,6 +19,7 @@ import java.io.Serializable;
* </pre>
*/
@Data
@EqualsAndHashCode(callSuper = true)
@AllArgsConstructor
@NoArgsConstructor
public class WxSignQueryResult extends BaseWxPayResult implements Serializable {