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.
|
- package db
-
- import (
- model2 "applet/app/db/model"
- )
-
- type EnterpriseGradeClass struct {
- model2.Enterprise `xorm:"extends"`
- model2.Grade `xorm:"extends"`
- model2.Class `xorm:"extends"`
- }
-
- func (EnterpriseGradeClass) TableName() string {
- return "enterprise"
- }
|