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

3 years ago
  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. TableName string `json:"tableName" gorm:"column:table_name"`
  8. StructName string `json:"structName" gorm:"column:struct_name"`
  9. StructCNName string `json:"structCNName" gorm:"column:struct_cn_name"`
  10. Flag int `json:"flag" gorm:"column:flag"`
  11. }