增加byte数组参数
This commit is contained in:
parent
7fa07577f0
commit
f645cb96db
|
@ -13,6 +13,8 @@ public class SysExtensionApiEntity {
|
|||
private String querys;
|
||||
/** body */
|
||||
private String bodys;
|
||||
//byteBodys
|
||||
private byte[] byteBodys;
|
||||
/** 发送方应用 */
|
||||
private SysApplicationEntity sendApp;
|
||||
/** 接收方应用 */
|
||||
|
@ -67,5 +69,13 @@ public class SysExtensionApiEntity {
|
|||
public void setReceiveApi(SysApplicationApiEntity receiveApi) {
|
||||
this.receiveApi = receiveApi;
|
||||
}
|
||||
|
||||
public byte[] getByteBodys() {
|
||||
return byteBodys;
|
||||
}
|
||||
|
||||
public void setByteBodys(byte[] byteBodys) {
|
||||
this.byteBodys = byteBodys;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue