zhangxu
2022-12-26 c92fe3a219cbf3a4006dc91d5fb6fc566fd22d72
phis-feign/src/main/java/com/hz/his/dto/refund/RefundFundsDto.java
New file
@@ -0,0 +1,47 @@
package com.hz.his.dto.refund;
import lombok.Data;
import java.math.BigDecimal;
/**
 * 用户资金退款dto
 */
@Data
public class RefundFundsDto {
    // 退款金额
    private BigDecimal refundTotal;
    // 用户id
    private String userId;
    // 门店id
    private String shopId;
    // 收款方
    private String payee;
    // 开户行
    private String openBank;
    // 开户支行
    private String openBranch;
    // 账号
    private String account;
    // 备注
    private String remarks;
    // 操作人类型
    private Integer operatorType;
    // 操作人id
    private String operatorId;
    // 平台来源
    private String platformSource;
    // 营销助手审批标识
    private String applyId;
    // 退款标识
    private String refundId;
    // 0:审核失败,1:审核通过
    private Integer type;
    // 审核人标识
    private String examEmplId;
    public RefundFundsDto() {
    }
}