fix hlog structs
This commit is contained in:
parent
685420a335
commit
014664ff94
@ -7,9 +7,9 @@ type AllFields struct {
|
|||||||
KeyPath string
|
KeyPath string
|
||||||
CtxUserID string
|
CtxUserID string
|
||||||
CtxAccountID string
|
CtxAccountID string
|
||||||
CtxID uint64
|
CtxIDInt int64
|
||||||
CtxQuizID uint64
|
CtxQuizID int64
|
||||||
CtxQuestionID uint64
|
CtxQuestionID int64
|
||||||
}
|
}
|
||||||
|
|
||||||
type InfoAccountCreated struct {
|
type InfoAccountCreated struct {
|
||||||
@ -18,32 +18,32 @@ type InfoAccountCreated struct {
|
|||||||
}
|
}
|
||||||
type InfoQuizCreated struct {
|
type InfoQuizCreated struct {
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник создаваемого квиза
|
CtxIDInt int64 //айдишник создаваемого квиза
|
||||||
}
|
}
|
||||||
type InfoQuizPublish struct { // если статус меняется на start
|
type InfoQuizPublish struct { // если статус меняется на start
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник публикуемого квиза
|
CtxIDInt int64 //айдишник публикуемого квиза
|
||||||
}
|
}
|
||||||
type InfoQuizDelete struct { // если квиз удаляется
|
type InfoQuizDelete struct { // если квиз удаляется
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник удаляемого квиза
|
CtxIDInt int64 //айдишник удаляемого квиза
|
||||||
}
|
}
|
||||||
type InfoQuizStop struct { // если статус меняется на stop
|
type InfoQuizStop struct { // если статус меняется на stop
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник останавливаемого квиза
|
CtxIDInt int64 //айдишник останавливаемого квиза
|
||||||
}
|
}
|
||||||
type InfoQuizTemplateCopy struct {
|
type InfoQuizTemplateCopy struct {
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник копируемого квиза
|
CtxIDInt int64 //айдишник копируемого квиза
|
||||||
CtxQuizID uint64 // айдишник опроса после копирования
|
CtxQuizID int64 // айдишник опроса после копирования
|
||||||
}
|
}
|
||||||
type InfoQuestionCreate struct {
|
type InfoQuestionCreate struct {
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник останавливаемого квиза
|
CtxIDInt int64 //айдишник останавливаемого квиза
|
||||||
CtxQuestionID uint64 // айдишник вопроса
|
CtxQuestionID int64 // айдишник вопроса
|
||||||
}
|
}
|
||||||
type InfoQuestionDelete struct {
|
type InfoQuestionDelete struct {
|
||||||
CtxUserID string //айдишник юзера из токена
|
CtxUserID string //айдишник юзера из токена
|
||||||
CtxID uint64 //айдишник останавливаемого квиза
|
CtxIDInt int64 //айдишник останавливаемого квиза
|
||||||
CtxQuestionID uint64 // айдишник вопроса
|
CtxQuestionID int64 // айдишник вопроса
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user