|
|
|
@@ -62,7 +62,7 @@ public class WxPayAccount implements Serializable { |
|
|
|
private Integer type; |
|
|
|
/**是否开启分账**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="0:未开启分账1:开启分账",name="type") |
|
|
|
private boolean share; |
|
|
|
private Integer share; |
|
|
|
/**手续费**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="手续费",name="rate") |
|
|
|
private Integer rate; |
|
|
|
@@ -114,10 +114,10 @@ public class WxPayAccount implements Serializable { |
|
|
|
public void setType(Integer type) { |
|
|
|
this.type = type; |
|
|
|
} |
|
|
|
public boolean isShare() { |
|
|
|
public Integer getShare() { |
|
|
|
return share; |
|
|
|
} |
|
|
|
public void setShare(boolean share) { |
|
|
|
public void setShare(Integer share) { |
|
|
|
this.share = share; |
|
|
|
} |
|
|
|
|
|
|
|
|