package model type BatchDeleteIn struct { Ids []int } type BatchDeleteOut struct { Ids []int } type LoginOut struct { Token string } type UpdateOut struct { Success bool } type DeleteOut struct { Success bool } type CreateOut struct { Id int64 }