|
@@ -0,0 +1,22 @@
|
|
|
+package cn.com.ctop.toutiao.modules.report.entity;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class ByteDanceOperationRecord {
|
|
|
+
|
|
|
+ private Long accountId;
|
|
|
+ private Long objectId;
|
|
|
+ private String contentTitle;
|
|
|
+ private String objectType;
|
|
|
+ private String objectName;
|
|
|
+ private Date operationCreateTime;
|
|
|
+ private String contentLog;
|
|
|
+ private String operator;
|
|
|
+ private String optIp;
|
|
|
+ private Integer operationTarget;
|
|
|
+ private String statDate;
|
|
|
+
|
|
|
+}
|