package model import "github.com/gogf/gf/v2/frame/g" type ReadRecord struct { g.Meta `orm:"table:read_records"` Id int64 `json:"id"` UserId int64 `json:"userId"` BookId int64 `json:"bookId"` ChapterId int64 `json:"chapterId"` ReadAt int64 `json:"readAt"` } type ReadRecordListIn struct { Page int Size int UserId int64 BookId int64 ChapterId int64 } type ReadRecordListOut struct { Total int List []ReadRecord } type ReadRecordAddIn struct { UserId int64 BookId int64 ChapterId int64 } type ReadRecordDelIn struct { Id int64 } type ReadRecordCRUDOut struct { Success bool }