package entity type Mysql struct { GlobalCommonData *MysqlStruct `json:"globalCommonData,omitempty"` } //mysql type MysqlStruct struct { DbName string `json:"dbName"` Address string `json:"address"` UserName string `json:"userName"` Password string `json:"password"` MaxOpenConns int `json:"maxOpenConns"` MaxIdleConns int `json:"maxIdleConns"` }