init.go 116 B

12345678910
  1. package address_model
  2. import (
  3. "github.com/astaxie/beego/orm"
  4. )
  5. func init() {
  6. orm.RegisterModel(new(Address))
  7. }