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.
23 lines
712 B
23 lines
712 B
// |
|
// APIConst.swift |
|
// Lookfit |
|
// |
|
// Created by lemo. on 2020/4/22. |
|
// Copyright © 2020 Sheldon. All rights reserved. |
|
// |
|
|
|
import Foundation |
|
|
|
let baseUrl = "http://4g.watch.app.ecellsz.com:8089/" |
|
/// 获取固件最新下载地址 |
|
let getLastAppUpgradeLogUrl = "user/getLastAppUpgradeLog" |
|
/// 查询天气实况信息 |
|
let getHeFengLiveWeatherUrl = "app/weather/getHeFengLiveWeather" |
|
/// 查询天气预报信息 |
|
let getHeFengForecastWeatherUrl = "app/weather/getHeFengForecastWeather" |
|
/// 获取设备二维码 |
|
let wechatGetCodeUrl = "wechat/getCode" |
|
/// 获取表盘 |
|
let dialListUrl = "app/package/select/list" |
|
/// 获取设备适配功能 |
|
let getDeviceFunByBrandCodeUrl = "device/getDeviceFunByBrandCode"
|
|
|