zhangqian
2023-08-26 5193dcb9336e853502baf8a539d3f45efebe2f86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"`
    BusinessDB   string    `json:"businessDB" gorm:"column:business_db"`
    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"`
}