| | |
| | | import com.panzhihua.common.model.vos.*; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | * @return |
| | | */ |
| | | R uuLogin(UuLoginVO uuLoginVO); |
| | | |
| | | /** |
| | | * 导出验证密码 |
| | | * @param account |
| | | * @param password |
| | | * @return |
| | | */ |
| | | R checkExport(@RequestParam("account")String account, @RequestParam("password")String password,@RequestParam("oldPassword")String oldPassword); |
| | | |
| | | /** |
| | | * 数据看板:数据总览 |
| | | * @param type 查看类型 |
| | | * @param streetId 街道id |
| | | * @param areaCode 区县code |
| | | * */ |
| | | R newIndexData(Integer type, Long streetId,Long areaCode); |
| | | |
| | | /** |
| | | * 用户占比统计 |
| | | * @param type 查看类型 |
| | | * @param streetId 街道id |
| | | * @param areaCode 区县code |
| | | * @param range */ |
| | | R userRate(Integer type, Long streetId, Long areaCode, Integer range); |
| | | |
| | | /** |
| | | * 真实用户占比统计 |
| | | * @param type 查看类型 |
| | | * @param streetId 街道id |
| | | * @param areaCode 区县code |
| | | * @param range */ |
| | | R realUser(Integer type, Long streetId, Long areaCode, Integer range); |
| | | |
| | | |
| | | /** |
| | | * 用户行为折线图 |
| | | * @param type 查看类型 |
| | | * @param streetId 街道id |
| | | * @param areaCode 区县code |
| | | * @param range */ |
| | | R userActivity(Integer type, Long streetId, Long areaCode, Integer range); |
| | | |
| | | /** |
| | | * 获取区县即下属街道名 |
| | | * */ |
| | | R getAreaAndStreet(); |
| | | |
| | | /** |
| | | * uu洗车通知推送 |
| | | * @param phone |
| | | * @param orderStatus |
| | | * @return |
| | | */ |
| | | R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus); |
| | | } |