增加byte数组参数

This commit is contained in:
476474485@qq.com 2024-06-19 10:03:46 +08:00
parent 7fa07577f0
commit f645cb96db
1 changed files with 10 additions and 0 deletions

View File

@ -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;
}
}