parent
bcd2137d2e
commit
3933669a0f
@ -0,0 +1,11 @@
|
|||||||
|
package MySwagger
|
||||||
|
|
||||||
|
import "dsSupport/Utils/ES7Util/DataEX"
|
||||||
|
|
||||||
|
type Result2 struct {
|
||||||
|
Success bool `json:"success" example:"true"`
|
||||||
|
Fail bool `json:"fail" example:"false"`
|
||||||
|
Message string `json:"message" example:"操作成功"`
|
||||||
|
Total int `json:"total" example:"120"`
|
||||||
|
Data []DataEX.ESData2 `json:"data" `
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
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"`
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue