demo_gen_class.go 601 B

1234567891011121314
  1. // ==========================================================================
  2. // GFast自动生成model代码,无需手动修改,重新生成会自动覆盖.
  3. // 生成日期:2021-07-26 11:07:30
  4. // 生成路径: gfast/app/system/model/demo_gen_class.go
  5. // 生成人:gfast
  6. // ==========================================================================
  7. package model
  8. // DemoGenClass is the golang structure for table demo_gen_class.
  9. type DemoGenClass struct {
  10. Id uint `orm:"id,primary" json:"id"` // 分类id
  11. ClassName string `orm:"class_name" json:"className"` // 分类名
  12. }