package relations import ( "git.sxidc.com/go-framework/baize/framework/binding" ) // Simple Bind参数 type Simple struct { // schema Schema string } func (simple *Simple) Bind(binder *binding.Binder) { (&SimplePermissionGroupAndPermission{Schema: simple.Schema}).Bind(binder) (&SimpleRoleAndPermission{Schema: simple.Schema}).Bind(binder) (&SimpleUserAndRole{Schema: simple.Schema}).Bind(binder) }