github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_area.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  )
    10  
    11  // SysArea is the golang structure of table sys_area for DAO operations like Where/Data.
    12  type SysArea struct {
    13  	g.Meta        `orm:"table:sys_area, do:true"`
    14  	Id            interface{} // ID
    15  	AreaCode      interface{} // 地区编码
    16  	AreaName      interface{} // 地区名称
    17  	Level         interface{} // 1区县district、2市city、4省份province、8大区region、16全国nation
    18  	CityCode      interface{} // 城市编码
    19  	LatLongCenter interface{} // 城市中心点(即经纬度)
    20  	ParentId      interface{} // 地区父节点
    21  }