You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
551 B
Go
16 lines
551 B
Go
package models
|
|
|
|
import "goqs/global"
|
|
|
|
type AppPage struct {
|
|
global.MODEL
|
|
Product string `json:"product" gorm:"column:product;type:varchar(255);not null;comment:产品名"`
|
|
PageName string `json:"page_name" gorm:"column:page_name;type:varchar(255);not null;comment:应用页面名称"`
|
|
Pf string `json:"pf" gorm:"column:pf;type:varchar(255);not null;comment:应用包名"`
|
|
Count int `json:"count" gorm:"column:count;type:int(13);not null;comment:计数"`
|
|
}
|
|
|
|
func (t *AppPage) TableName() string {
|
|
return "app_pages"
|
|
}
|