You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
524 B
13 lines
524 B
package response
|
|
|
|
import "time"
|
|
|
|
type AutoCodeHistory struct {
|
|
ID uint `json:"ID" gorm:"column:id"`
|
|
CreatedAt time.Time `json:"CreatedAt" gorm:"column:created_at"`
|
|
UpdatedAt time.Time `json:"UpdatedAt" gorm:"column:updated_at"`
|
|
TableName string `json:"tableName" gorm:"column:table_name"`
|
|
StructName string `json:"structName" gorm:"column:struct_name"`
|
|
StructCNName string `json:"structCNName" gorm:"column:struct_cn_name"`
|
|
Flag int `json:"flag" gorm:"column:flag"`
|
|
}
|