mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-02 20:02:37 +08:00
🎨 恢复误修改的代码
This commit is contained in:
parent
81cb16bf9f
commit
65134bd1ca
@ -1,18 +1,16 @@
|
||||
package com.github.binarywang.wxpay.bean.payscore;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
import me.chanjar.weixin.common.util.json.WxGsonBuilder;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author doger.wang
|
||||
* created on 2020/5/12 16:36
|
||||
@ -43,7 +41,7 @@ public class WxPayScoreRequest implements Serializable {
|
||||
* notify_url : https://api.test.com
|
||||
* openid : oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
|
||||
* need_user_confirm : true
|
||||
* profitSharing :Y-是,需要分账 N-否,不分账,字母要求大写,不传默认不分账
|
||||
* profitSharing : false:不分账,默认:false,true:分账
|
||||
*/
|
||||
@SerializedName("out_order_no")
|
||||
private String outOrderNo;
|
||||
@ -68,7 +66,7 @@ public class WxPayScoreRequest implements Serializable {
|
||||
@SerializedName("need_user_confirm")
|
||||
private Boolean needUserConfirm;
|
||||
@SerializedName("profit_sharing")
|
||||
private String profitSharing;
|
||||
private Boolean profitSharing;
|
||||
@SerializedName("post_payments")
|
||||
private List<PostPayment> postPayments;
|
||||
@SerializedName("post_discounts")
|
||||
|
Loading…
Reference in New Issue
Block a user