wxhelper/java_client/src/main/java/com/example/wxhk/model/request/ConfirmThePayment.java

28 lines
578 B
Java
Raw Normal View History

2023-06-01 09:57:03 +08:00
package com.example.wxhk.model.request;
import com.example.wxhk.infe.SendMsg;
import lombok.Data;
import lombok.experimental.Accessors;
/**
* 确认收款
* @author wt
* @date 2023/06/01
*/
@Data
@Accessors(chain = true)
2023-06-01 10:22:56 +08:00
public class ConfirmThePayment implements SendMsg<ConfirmThePayment> {
2023-06-01 09:57:03 +08:00
/**
* 转账人微信id从hook的消息中获取
*/
String wxid;
/**
* 从hook的消息中获取对应的字段内容
*/
String transcationId;
/**
* 从hook的消息中获取对应的字段内容
*/
String transferId;
}