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

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  // SysArea is the golang structure for table sys_area.
     8  type SysArea struct {
     9  	Id            int64  `json:"id"            description:"ID"`
    10  	AreaCode      int    `json:"areaCode"      description:"地区编码"`
    11  	AreaName      string `json:"areaName"      description:"地区名称"`
    12  	Level         int    `json:"level"         description:"1区县district、2市city、4省份province、8大区region、16全国nation"`
    13  	CityCode      string `json:"cityCode"      description:"城市编码"`
    14  	LatLongCenter string `json:"latLongCenter" description:"城市中心点(即经纬度)"`
    15  	ParentId      int64  `json:"parentId"      description:"地区父节点"`
    16  }