| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import org.springframework.format.annotation.DateTimeFormat;
- /**
- * entity:BisInspLog
- *
- * @author lune
- * @date 2019-3-7
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspLog extends BaseBean implements Serializable {
- @ApiModelProperty("机构id")
- private String orgId;
- // 主键
- private String logId;
- @ApiModelProperty("用户id")
- private String userId;
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- // 操作时间
- @ApiModelProperty("插入时间")
- private Date intm;
- // 操作内容
- @ApiModelProperty("接口说明")
- private String content;
- // 路径
- private String path;
- @ApiModelProperty("参数")
- private String params;
- private String source;
- @ApiModelProperty("ip地址")
- private String ipAddr;
- private String appModel;
- private String username;
- @ApiModelProperty("发送数据body")
- private String requestBody;
- @ApiModelProperty("数据回执")
- private String responseBody;
- @ApiModelProperty("请求方法")
- private String method;
- private String header;
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getHeader() {
- return header;
- }
- public void setHeader(String header) {
- this.header = header;
- }
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- public String getRequestBody() {
- return requestBody;
- }
- public void setRequestBody(String requestBody) {
- this.requestBody = requestBody;
- }
- public String getResponseBody() {
- return responseBody;
- }
- public void setResponseBody(String responseBody) {
- this.responseBody = responseBody;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public String getAppModel() {
- return appModel;
- }
- public void setAppModel(String appModel) {
- this.appModel = appModel;
- }
- public String getIpAddr() {
- return ipAddr;
- }
- public void setIpAddr(String ipAddr) {
- this.ipAddr = ipAddr;
- }
- public String getSource() {
- return source;
- }
- public void setSource(String source) {
- this.source = source;
- }
- public String getParams() {
- return params;
- }
- public void setParams(String params) {
- this.params = params;
- }
- public BisInspLog() {
- }
- public String getLogId() {
- return logId;
- }
- public void setLogId(String logId) {
- this.logId = logId;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- @Override
- public String toString() {
- return "BisInspLog [" + "logId=" + logId + ", userId=" + userId + ", intm=" + intm + ", content=" + content + ", path=" + path + "]";
- }
- }
|