|
@@ -547,4 +547,90 @@ public class AllApi {
|
|
public JsonModel evaluationMaintenance(Integer id, String solveStatus, String serviceRating, String serviceEvaluate){
|
|
public JsonModel evaluationMaintenance(Integer id, String solveStatus, String serviceRating, String serviceEvaluate){
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+//PsersonalCenter
|
|
|
|
+ /**
|
|
|
|
+ * 个人中心显示数据
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/personalCenter/myCentre")
|
|
|
|
+ public JsonModel myCentre(Integer userID) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 账户余额明细
|
|
|
|
+ * @param year
|
|
|
|
+ * @param month
|
|
|
|
+ * @param pageNum
|
|
|
|
+ * @param pageSize
|
|
|
|
+ * @param userId 用户Id
|
|
|
|
+ * @param type 收支类型:1收入,2支出
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/personalCenter/touchBalance")
|
|
|
|
+ public JsonModel touchBalance(int year, int month, PageVo pageVo, BalanceRecordVo balanceRecord) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 查询用户所有地址
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/personalCenter/findAddress")
|
|
|
|
+ public JsonModel findAddress(Integer userID, PageVo pageVo) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 保存或编辑地址
|
|
|
|
+ * @param userID 用户ID
|
|
|
|
+ * @param shouHuoRen 收货人
|
|
|
|
+ * @param mobile 手机号
|
|
|
|
+ * @param townID 区Id
|
|
|
|
+ * @param address 地址
|
|
|
|
+ * @param defaultFlag 是否默认收货地址(0 不是默认,1 默认)
|
|
|
|
+ * @param addressID 地址ID
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/personalCenter/saveAddress")
|
|
|
|
+ public JsonModel saveAddress(AddressVo addressVo) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 删除地址
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/personalCenter/deleteAddress")
|
|
|
|
+ public JsonModel deleteAddress(Integer addressID) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 发票信息
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/personalCenter/invoice")
|
|
|
|
+ public JsonModel invoice(InvoiceVo invoiceVo) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 发票信息数据
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/personalCenter/findInvoice")
|
|
|
|
+ public JsonModel findInvoice(Long userId) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 普通机构取消提示
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/cancelPrompt")
|
|
|
|
+ public JsonModel cancelPrompt(Integer userId) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 设为默认地址
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/personalCenter/defaultAddress")
|
|
|
|
+ public JsonModel defaultAddress(Integer userId, Integer addressId) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
}
|
|
}
|