| | |
| | | package com.hdl.photovoltaic.internet.api; |
| | | |
| | | public class HttpApi { |
| | | /*-----用户管理---------*/ |
| | | /** |
| | | * -----用户管理--------- |
| | | */ |
| | | //获取账号区域信息 |
| | | public static final String POST_RegionByUserAccount = "/smart-footstone/region/regionByUserAccount"; |
| | | //登录接口 |
| | | public static final String POST_Login = "/smart-footstone/user/oauth/login"; |
| | | //发送消息验证码 |
| | | public static final String POST_VERIFICATION_CODE_SEND= "/smart-footstone/verification/message/send"; |
| | | public static final String POST_VERIFICATION_CODE_SEND = "/smart-footstone/verification/message/send"; |
| | | //用户找回密码 忘记密码,通过邮箱和手机号找回 |
| | | public static final String POST_FORGET_PROGRAM_PWD = "/smart-footstone/user/oauth/forgetProgramPwd"; |
| | | //更改个人密码 |
| | |
| | | //获取员工列表 |
| | | public static final String POST_GET_USER_LIST = "/smart-footstone/user/userInfo/getUserList"; |
| | | //获取用户个人信息 C端 |
| | | public static final String POST_GET_MEMBER_INFO= "/smart-footstone/member/memberInfo/getMemberInfo"; |
| | | public static final String POST_GET_MEMBER_INFO = "/smart-footstone/member/memberInfo/getMemberInfo"; |
| | | //更新个人信息 C端 |
| | | public static final String POST_UPDATE_MEMBER_INFO = "/smart-footstone/member/memberInfo/updateMemberInfo"; |
| | | //上传图片 |
| | |
| | | public static final String POST_UPLOAD_IMAGE_NEW = "/basis-cosmos/file/upload"; |
| | | //查询图片路径 |
| | | public static final String POST_GET_IMAGE_URL = "/home-wisdom/app/images/get_image_url"; |
| | | |
| | | /** |
| | | * ------电站管理(住宅)-------- |
| | | */ |
| | | //电站列表 |
| | | public static final String POST_PowerStation_List = "/home-wisdom/app/powerStation/page"; |
| | | //电站创建 |
| | | public static final String POST_PowerStation_Create = "/home-wisdom/app/powerStation/create"; |
| | | //电站删除 |
| | | public static final String POST_PowerStation_Remove = "/home-wisdom/app/powerStation/remove"; |
| | | //电站详情 |
| | | public static final String POST_PowerStation_Info = "/home-wisdom/app/powerStation/info"; |
| | | //电站编辑 |
| | | public static final String POST_PowerStation_Edit = "/home-wisdom/app/powerStation/edit"; |
| | | |
| | | /** |
| | | * ------设备管理-------- |
| | | */ |
| | | //添加逆变器 |
| | | public static final String POST_Device_Add = "/home-wisdom/app/device/independentRegister"; |
| | | //获取逆变器列表 |
| | | public static final String POST_Device_List = "/home-wisdom/app/device/inverter/list"; |
| | | //删除逆变器 |
| | | public static final String POST_Device_Remove = "/home-wisdom/app/device/remove"; |
| | | //获取下挂设备列表 |
| | | public static final String POST_Device_ChildDevices_List = "/home-wisdom/app/powerStation/childDevices"; |
| | | //全量更新OID |
| | | public static final String POST_Device_Oid = "/home-wisdom/program/device/oid/add"; |
| | | |
| | | |
| | | } |