Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package adminlog
// AdminLog AdminLog
type AdminLog struct {
ReplyID int64 `json:"reply_id"` //操作人
AdminID int64 `json:"adminid"` //操作人
Operator string `json:"operator"` //操作人昵称
State int32 `json:"operator_type"` //操作人身份
ReplyMid int64 `json:"replymid"` //评论人
ReplyUser string `json:"reply_user"` //评论人昵称
ReplyFacePic string `json:"reply_face_pic"` //评论人头像
CTime string `json:"operation_time"` //删除时间
}