| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.kingdee.eas.custom.esign.tsign.hz.comm;
- /**
- * ÍøÂçÇëÇóµÄresponseÀà
- * @author ³Îãü
- * @date 2022/2/21 17:28
- * @version
- */
- public class EsignHttpResponse {
- private int status;
- private String body;
- private String logId;
- public int getStatus() {
- return status;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public String getBody() {
- return body;
- }
- public void setBody(String body) {
- this.body = body;
- }
- public String getLogId() {
- return logId;
- }
- public void setLogId(String logId) {
- this.logId = logId;
- }
- }
|