|
@ -0,0 +1,52 @@
|
|
|
package com.yihu.wlyy.service.entity.log;
|
|
|
|
|
|
import com.yihu.wlyy.service.common.model.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by yeshijie on 2017/9/26.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_http_log_detail")
|
|
|
public class HttpLogDetail extends IdEntity {
|
|
|
|
|
|
private Long code;//关联code和ZyPushLog表的id
|
|
|
private String response;//'返回结果',
|
|
|
private String error;//'报错信息',
|
|
|
private Date createTime;// '创建时间',
|
|
|
|
|
|
public Long getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(Long code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getResponse() {
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
public void setResponse(String response) {
|
|
|
this.response = response;
|
|
|
}
|
|
|
|
|
|
public String getError() {
|
|
|
return error;
|
|
|
}
|
|
|
|
|
|
public void setError(String error) {
|
|
|
this.error = error;
|
|
|
}
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
}
|