mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
🎨 优化规范部分代码
This commit is contained in:
@@ -8,6 +8,7 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@@ -18,70 +19,69 @@ import java.util.List;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public class ApplymentStateQueryResult {
|
||||
public class ApplymentStateQueryResult implements Serializable {
|
||||
private static final long serialVersionUID = 6539090917423486409L;
|
||||
/**
|
||||
* 业务申请编号
|
||||
*/
|
||||
@SerializedName("business_code")
|
||||
private String businessCode;
|
||||
/**
|
||||
* 微信支付申请单号
|
||||
*/
|
||||
@SerializedName("applyment_id")
|
||||
private String applymentId;
|
||||
/**
|
||||
* 特约商户号
|
||||
*/
|
||||
@SerializedName("sub_mchid")
|
||||
private String subMchid;
|
||||
/**
|
||||
* 超级管理员签约链接
|
||||
*/
|
||||
@SerializedName("sign_url")
|
||||
private String signUrl;
|
||||
|
||||
/**
|
||||
* 业务申请编号
|
||||
*/
|
||||
@SerializedName("business_code")
|
||||
private String businessCode;
|
||||
/**
|
||||
* 微信支付申请单号
|
||||
*/
|
||||
@SerializedName("applyment_id")
|
||||
private String applymentId;
|
||||
/**
|
||||
* 特约商户号
|
||||
*/
|
||||
@SerializedName("sub_mchid")
|
||||
private String subMchid;
|
||||
/**
|
||||
* 超级管理员签约链接
|
||||
*/
|
||||
@SerializedName("sign_url")
|
||||
private String signUrl;
|
||||
/**
|
||||
* 申请单状态
|
||||
*/
|
||||
@SerializedName("applyment_state")
|
||||
private ApplymentStateEnum applymentState;
|
||||
/**
|
||||
* 申请状态描述
|
||||
*/
|
||||
@SerializedName("applyment_state_msg")
|
||||
private String applymentStateMsg;
|
||||
/**
|
||||
* 驳回原因详情
|
||||
*/
|
||||
@SerializedName("audit_detail")
|
||||
private List<AuditDetail> auditDetail;
|
||||
|
||||
/**
|
||||
* 驳回原因详情
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public static class AuditDetail {
|
||||
/**
|
||||
* 申请单状态
|
||||
*
|
||||
* 字段名
|
||||
*/
|
||||
@SerializedName("applyment_state")
|
||||
private ApplymentStateEnum applymentState;
|
||||
@SerializedName("field")
|
||||
private String field;
|
||||
/**
|
||||
* 申请状态描述
|
||||
* 字段名称
|
||||
*/
|
||||
@SerializedName("applyment_state_msg")
|
||||
private String applymentStateMsg;
|
||||
@SerializedName("field_name")
|
||||
private String fieldName;
|
||||
/**
|
||||
* 驳回原因详情
|
||||
* 驳回原因
|
||||
*/
|
||||
@SerializedName("audit_detail")
|
||||
private List<AuditDetail> auditDetail;
|
||||
@SerializedName("reject_reason")
|
||||
private String rejectReason;
|
||||
|
||||
/**
|
||||
* 驳回原因详情
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public static class AuditDetail {
|
||||
/**
|
||||
* 字段名
|
||||
*/
|
||||
@SerializedName("field")
|
||||
private String field;
|
||||
/**
|
||||
* 字段名称
|
||||
*/
|
||||
@SerializedName("field_name")
|
||||
private String fieldName;
|
||||
/**
|
||||
* 驳回原因
|
||||
*/
|
||||
@SerializedName("reject_reason")
|
||||
private String rejectReason;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,8 @@ import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.github.binarywang.wxpay.v3.SpecEncrypt;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 修改结算账户请求对象
|
||||
*/
|
||||
@@ -17,7 +19,8 @@ import com.github.binarywang.wxpay.v3.SpecEncrypt;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public class ModifySettlementRequest {
|
||||
public class ModifySettlementRequest implements Serializable {
|
||||
private static final long serialVersionUID = 4568552340365230872L;
|
||||
/**
|
||||
*账户类型
|
||||
*/
|
||||
|
||||
@@ -7,6 +7,8 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 查询结算账户返回对象信息
|
||||
*/
|
||||
@@ -15,9 +17,9 @@ import lombok.experimental.Accessors;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
public class SettlementInfoResult {
|
||||
|
||||
/**
|
||||
public class SettlementInfoResult implements Serializable {
|
||||
private static final long serialVersionUID = 4568552340365230872L;
|
||||
/**
|
||||
* 账户类型
|
||||
*/
|
||||
@SerializedName("account_type")
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -12,7 +12,7 @@ import java.io.Serializable;
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class ApplymentsResult implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -4549193755252593150L;
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:微信支付申请单号
|
||||
|
||||
@@ -144,7 +144,8 @@ public class ApplymentsStatusResult implements Serializable {
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public static class AccountValidation implements Serializable{
|
||||
public static class AccountValidation implements Serializable {
|
||||
private static final long serialVersionUID = 4379880030965808588L;
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:付款户名
|
||||
@@ -275,7 +276,8 @@ public class ApplymentsStatusResult implements Serializable {
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public static class AuditDetail implements Serializable{
|
||||
public static class AuditDetail implements Serializable {
|
||||
private static final long serialVersionUID = 5446130564359386809L;
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:参数名称
|
||||
|
||||
Reference in New Issue
Block a user