|
@@ -28,6 +28,72 @@ public class OperationLog implements Serializable {
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long id;
|
|
|
|
|
|
+ /**
|
|
|
+ * 操作人用户ID
|
|
|
+ */
|
|
|
+ @TableField("operation_id")
|
|
|
+ private Long operationId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作人用户名
|
|
|
+ */
|
|
|
+ @TableField("operation_name")
|
|
|
+ private String operationName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作日期
|
|
|
+ */
|
|
|
+ @TableField("operation_date")
|
|
|
+ private Date operationDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作记录
|
|
|
+ */
|
|
|
+ @TableField("operation_record")
|
|
|
+ private String operationRecord;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ip地址
|
|
|
+ */
|
|
|
+ @TableField("operation_ip")
|
|
|
+ private Integer operationIp;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作地址
|
|
|
+ */
|
|
|
+ @TableField("operation_address")
|
|
|
+ private String operationAddress;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作方法
|
|
|
+ */
|
|
|
+ @TableField("operation_method")
|
|
|
+ private String operationMethod;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作请求方式
|
|
|
+ */
|
|
|
+ @TableField("operation_way")
|
|
|
+ private String operationWay;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作url
|
|
|
+ */
|
|
|
+ @TableField("operation_url")
|
|
|
+ private String operationUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作参数
|
|
|
+ */
|
|
|
+ @TableField("operation_param")
|
|
|
+ private String operationParam;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 返回参数
|
|
|
+ */
|
|
|
+ @TableField("json_result")
|
|
|
+ private String jsonResult;
|
|
|
+
|
|
|
/**
|
|
|
* 是否删除,N:未删除,Y:删除
|
|
|
*/
|