实体类

This commit is contained in:
liuyingfang 2023-06-13 10:38:15 +08:00
parent df26d12b1c
commit 87fb7091b4
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
package cn.pluss.platform.pos;
import lombok.Data;
/**
* @author lyf
*/
@Data
public class PosPay {
/**
* 设备号
*/
private String sn;
/**
* 授权码
*/
private String authCode;
/**
* 金额
*/
private String consumeFee;
/**
* 付款类型4
*/
private String type;
/**
* 下游订单号
*/
private String mercOrderNo;
/**
*备注
*/
private String remark;
}