|
|
@@ -0,0 +1,194 @@
|
|
|
+package me.zhengjie.dao.mybatis.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+import lombok.ToString;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author humuyu
|
|
|
+ * @since 2022-07-25
|
|
|
+ */
|
|
|
+@TableName("cochain_log")
|
|
|
+@ToString
|
|
|
+public class CochainLogEntity implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 业务编号
|
|
|
+ */
|
|
|
+ @TableField("business_no")
|
|
|
+ private String businessNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 业务编号
|
|
|
+ */
|
|
|
+ @TableField("order_id")
|
|
|
+ private String orderId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件路径
|
|
|
+ */
|
|
|
+ @TableField("file_path")
|
|
|
+ private String filePath;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 每一条请求的流水
|
|
|
+ */
|
|
|
+ @TableField("bis_code")
|
|
|
+ private String bisCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件sha的值
|
|
|
+ */
|
|
|
+ @TableField("sha1_code")
|
|
|
+ private String sha1Code;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 请求参数
|
|
|
+ */
|
|
|
+ @TableField("req_param")
|
|
|
+ private String reqParam;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 返回的参数内容
|
|
|
+ */
|
|
|
+ @TableField("res_content")
|
|
|
+ private String resContent;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 1:图片,2:pdf,3:视频
|
|
|
+ */
|
|
|
+ @TableField("type")
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 调用成功0:是失败1:是成功
|
|
|
+ */
|
|
|
+ @TableField("is_call")
|
|
|
+ private String isCall;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @TableField("create_time")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField("update_time")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBusinessNo() {
|
|
|
+ return businessNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBusinessNo(String businessNo) {
|
|
|
+ this.businessNo = businessNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderId() {
|
|
|
+ return orderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderId(String orderId) {
|
|
|
+ this.orderId = orderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFilePath() {
|
|
|
+ return filePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilePath(String filePath) {
|
|
|
+ this.filePath = filePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBisCode() {
|
|
|
+ return bisCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBisCode(String bisCode) {
|
|
|
+ this.bisCode = bisCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSha1Code() {
|
|
|
+ return sha1Code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSha1Code(String sha1Code) {
|
|
|
+ this.sha1Code = sha1Code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReqParam() {
|
|
|
+ return reqParam;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReqParam(String reqParam) {
|
|
|
+ this.reqParam = reqParam;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getResContent() {
|
|
|
+ return resContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setResContent(String resContent) {
|
|
|
+ this.resContent = resContent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsCall() {
|
|
|
+ return isCall;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsCall(String isCall) {
|
|
|
+ this.isCall = isCall;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(LocalDateTime createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(LocalDateTime updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|