12 lines
231 B
Go
12 lines
231 B
Go
package v2
|
|
|
|
import "time"
|
|
|
|
// 用于测试
|
|
type Mock struct {
|
|
ID uint `gorm:"primary_key" json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
Test *bool `json:"test"`
|
|
}
|