| | |
| | | |
| | | #region Timer 部分 |
| | | //***************************Timer 部分******************************** |
| | | public static string API_Timer = "/Timer/"; |
| | | public static string API_Timer = "/home-wisdom/app/timer/"; |
| | | /// <summary> |
| | | /// 3.1 删除定时器 |
| | | /// </summary> |
| | | public static string DeleteTimer = API_Timer + "DeleteTimer"; |
| | | public static string DeleteTimer = API_Timer + "delete"; |
| | | /// <summary> |
| | | /// 3.2 启用或禁用定时器 |
| | | /// </summary> |
| | | public static string IsEnableTimer = API_Timer + "IsEnableTimer"; |
| | | public static string IsEnableTimer = API_Timer + "is_enable"; |
| | | /// <summary> |
| | | /// 3.3 查询定时器列表 |
| | | /// </summary> |
| | | public static string GetTimerList = API_Timer + "GetTimerList"; |
| | | public static string GetTimerList = API_Timer + "list"; |
| | | /// <summary> |
| | | /// 3.4 添加定时器 |
| | | /// </summary> |
| | | public static string AddTimer = API_Timer + "AddTimer"; |
| | | public static string AddTimer = API_Timer + "save"; |
| | | /// <summary> |
| | | /// 3.5 编辑定时器 |
| | | /// </summary> |
| | | public static string EditTimer = API_Timer + "EditTimer"; |
| | | public static string EditTimer = API_Timer + "update"; |
| | | #endregion |
| | | |
| | | #region Alexa设备管理 部分 |