20 lines
213 B
Go
20 lines
213 B
Go
package model
|
|
|
|
type BatchDeleteIn struct {
|
|
Ids []int
|
|
}
|
|
type LoginOut struct {
|
|
Token string
|
|
}
|
|
|
|
type UpdateOut struct {
|
|
Success bool
|
|
}
|
|
type DeleteOut struct {
|
|
Success bool
|
|
}
|
|
|
|
type CreateOut struct {
|
|
Id int64
|
|
}
|