{
	"swagger":"2.0",
	"info":{
		"version":"0.0.1",
		"title":"Hello World App"
	},
	"host":"{{host}}",
	"basePath":"{{basePath}}",
	"schemes":[
		"{{schemes}}"
	],
	"consumes":[
		"application/json",
		"application/xml"
	],
	"produces":[
		"application/json",
		"application/xml"
	],
	"paths":{
		"/getSwiperList":{
			"get":{
				"description":"Method Description -- getSwiperList",
				"operationId":"getSwiperList",
				"tags":[
					"SwiperResource"
				],
				"responses":{
					"200":{
						"schema":{
							"$ref":"#/definitions/SwiperListVo"
						},
						"description":"Response OK"
					}
				}
			}
		},
		"/getMarqueeList":{
			"get":{
				"description":"Method Description -- getMarqueeList",
				"operationId":"getMarqueeList",
				"tags":[
					"MarqueeResource"
				],
				"responses":{
					"200":{
						"schema":{
							"$ref":"#/definitions/MarqueeListVo"
						},
						"description":"Response OK"
					}
				}
			}
		},
		"/getIndexPanelList":{
			"get":{
				"description":"Method Description -- getIndexPanelList",
				"operationId":"getIndexPanelList",
				"tags":[
					"PanelResource"
				],
				"responses":{
					"200":{
						"schema":{
							"$ref":"#/definitions/IndexPanelListVo"
						},
						"description":"Response OK"
					}
				}
			}
		},
		"/savePerson":{
			"post":{
				"description":"Method Description -- getIndexPanelList",
				"operationId":"getIndexPanelList",
				"tags":[
					"PanelResource"
				],
				"parameters":[
					{
						"name":"personvo",
						"in":"body",
						"required":"true",
						"schema":{
							"$ref":"#/definitions/personVo"
						},
						"description":"parameter name -- PersonVo"
					}
				],
				"responses":{
					"200":{
						"description":"Success",
						"schema":{
							"$ref":"#/definitions/successResponse"
						}
					}
				}
			}
		}
	},
	"definitions":{
		"personVo":{
			"type":"object",
			"properties":{
				"name":{
					"type":"string"
				},
				"phone":{
					"type":"string"
				},
				"sex":{
					"type":"string"
				},
				"birthday":{
					"type":"string"
				},
				"hobby":{
					"type":"string"
				},
				"address":{
					"type":"array"
				}
			}
		},
		"SwiperListVo":{
			"type":"array",
			"properties":{
				"getSwiperList":{
					"$ref":"#/definitions/SwiperVo"
				}
			}
		},
		"SwiperVo":{
			"type":"object",
			"properties":{
				"url":{
					"type":"string"
				},
				"img":{
					"type":"string"
				},
				"title":{
					"type":"string"
				}
			}
		},
		"IndexPanelListVo":{
			"type":"array",
			"properties":{
				"indexPanelList":{
					"$ref":"#/definitions/IndexPanelVo"
				}
			}
		},
		"IndexPanelVo":{
			"type":"object",
			"properties":{
				"src":{
					"type":"string"
				},
				"url":{
					"type":"string"
				},
				"title":{
					"type":"string"
				},
				"desc":{
					"type":"string"
				}
			}
		},
		"PagePanelListVo":{
			"type":"array",
			"properties":{
				"pagePanelList":{
					"$ref":"#/definitions/PagePanelVo"
				}
			}
		},
		"PagePanelVo":{
			"type":"object",
			"properties":{
				"src":{
					"type":"string"
				},
				"url":{
					"type":"string"
				},
				"title":{
					"type":"string"
				},
				"desc":{
					"type":"string"
				}
			}
		},
		"MarqueeListVo":{
			"type":"object",
             "properties":{
              	"marqueeList": {
              		"type" : "array",
             		"items" : {
                		"type" : "string"
              		}
              	}
              }
		},
		"successResponse":{
			"type":"object",
			"properties":{
				"message":{
					"type":"string",
					"description":"This is a send"
				}
			}
		}
	}
}