package com.stylefeng.guns.modular.system.util.Tingg.model;
|
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/3/20 16:33
|
*/
|
public class PayOutload {
|
/**
|
* 凭证
|
*/
|
private Credentials credentials;
|
/**
|
* 实体包信息
|
*/
|
private PayoutPacket packet;
|
|
public Credentials getCredentials() {
|
return credentials;
|
}
|
|
public void setCredentials(Credentials credentials) {
|
this.credentials = credentials;
|
}
|
|
public PayoutPacket getPacket() {
|
return packet;
|
}
|
|
public void setPacket(PayoutPacket packet) {
|
this.packet = packet;
|
}
|
}
|