You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
package DataEX
|
|
|
|
type ESData2 struct {
|
|
|
|
SystemId string `json:"system_id"`
|
|
DatasourceId string `json:"datasource_id"`
|
|
DatasourceName string `json:"datasource_name"`
|
|
ProvinceId string `json:"province_code"`
|
|
ProvinceName string `json:"province_name"`
|
|
CityId string `json:"city_code"`
|
|
CityName string `json:"city_name"`
|
|
AreaId string `json:"district_code"`
|
|
AreaName string `json:"district_name"`
|
|
BureauId string `json:"bureau_id"`
|
|
RegionId string `json:"region_id"`
|
|
MainId string `json:"main_id"`
|
|
OrgId string `json:"org_id"`
|
|
OrgName string `json:"org_name" `
|
|
OrgType int `json:"org_type"`
|
|
SchoolType string `json:"school_type"`
|
|
SchoolTypeName string `json:"school_typename"`
|
|
DeptId string `json:"dept_id"`
|
|
StageId string `json:"stage_id"`
|
|
GradeId string `json:"grade_id"`
|
|
ClassId string `json:"class_id"`
|
|
DataId string `json:"data_id"`
|
|
FileUri string `json:"file_uri"`
|
|
BeginTime JsonDate `json:"begin_time"`
|
|
EndTime JsonDate `json:"end_time"`
|
|
DelFlag int `json:"del_flag"`
|
|
EnableFlag int `json:"enable_flag"`
|
|
|
|
DataContent map[string]interface{} `json:"data_content"`
|
|
}
|
|
|