23 lines
1.1 KiB
Go
23 lines
1.1 KiB
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package po
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// District is the golang structure for table district.
|
||
|
type District struct {
|
||
|
Id int `json:"id" orm:"id" ` // 区划信息id
|
||
|
Pid int `json:"pid" orm:"pid" ` // 父级挂接id
|
||
|
Code int `json:"code" orm:"code" ` // 区划编码
|
||
|
Name string `json:"name" orm:"name" ` // 区划名称
|
||
|
Remark string `json:"remark" orm:"remark" ` // 备注
|
||
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // 创建时间
|
||
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // 更新时间
|
||
|
Status int `json:"status" orm:"status" ` // 状态 0 正常 -2 删除 -1 停用
|
||
|
Level int `json:"level" orm:"level" ` // 级次id 0:省/自治区/直辖市 1:市级 2:县级
|
||
|
}
|