mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 02:04:09 +00:00
13 lines
333 B
Go
13 lines
333 B
Go
package models
|
|
|
|
type SysChinaAreaData struct {
|
|
Id int `json:"id" gorm:"primaryKey;comment:主键编码"`
|
|
PId int `json:"p_id" gorm:"size:11;comment:上级编码"`
|
|
Name string `json:"name" gorm:"size:128;comment:名称"`
|
|
ControlBy
|
|
ModelTime
|
|
}
|
|
|
|
func (SysChinaAreaData) TableName() string {
|
|
return "sys_china_area_data"
|
|
} |