sys_auto_code_history.go 594 B

1234567891011121314
  1. package response
  2. import "time"
  3. type AutoCodeHistory struct {
  4. ID uint `json:"ID" gorm:"column:id"`
  5. CreatedAt time.Time `json:"CreatedAt" gorm:"column:created_at"`
  6. UpdatedAt time.Time `json:"UpdatedAt" gorm:"column:updated_at"`
  7. BusinessDB string `json:"businessDB" gorm:"column:business_db"`
  8. TableName string `json:"tableName" gorm:"column:table_name"`
  9. StructName string `json:"structName" gorm:"column:struct_name"`
  10. StructCNName string `json:"structCNName" gorm:"column:struct_cn_name"`
  11. Flag int `json:"flag" gorm:"column:flag"`
  12. }