common/structs/v2/mock.go

12 lines
231 B
Go
Raw Normal View History

2024-11-29 15:45:38 +08:00
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"`
}