feat: init
This commit is contained in:
17
.gen/model/device.go
Normal file
17
.gen/model/device.go
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
type Device struct {
|
||||
ID int32 `sql:"primary_key"`
|
||||
UUID string
|
||||
Name string
|
||||
Expert string
|
||||
State string
|
||||
Note string
|
||||
}
|
||||
21
.gen/model/expert.go
Normal file
21
.gen/model/expert.go
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
type Expert struct {
|
||||
ID int32 `sql:"primary_key"`
|
||||
UID string
|
||||
SecUID string
|
||||
ShortID string
|
||||
RealName string
|
||||
NickName string
|
||||
State string
|
||||
Since int32
|
||||
Config string
|
||||
ConfigAt int32
|
||||
}
|
||||
21
.gen/model/follower.go
Normal file
21
.gen/model/follower.go
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
type Follower struct {
|
||||
ID int32 `sql:"primary_key"`
|
||||
Avatar string
|
||||
Nickname string
|
||||
SecUID string
|
||||
ShortID string
|
||||
UID string
|
||||
UniqueID string
|
||||
ExpertUID string
|
||||
Followed int32
|
||||
CreatedAt int32
|
||||
}
|
||||
Reference in New Issue
Block a user