zhangxu
2022-09-23 3331e358f12dd29b15eb94e6f57d0d11ccd8182c
Merge remote-tracking branch 'origin/master'
4个文件已修改
37 ■■■■ 已修改文件
phis-feign/src/main/java/com/hz/his/dto/user/money/UserMoneyUpdateDto.java 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/phis/SOrderService.java 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserMoneyService.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncProjectService.java 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/dto/user/money/UserMoneyUpdateDto.java
@@ -49,14 +49,15 @@
    /*****************类型信息 注:以下常量以phis的UserMoneyLog常量为主*******************************/
    /**操作人类型-用户*/
    public static final int OPERATOR_TYPE_USER = 0;
    /**操作人类型-员工*/
    public static final int OPERATOR_TYPE_EMPLOYEE = 1;
    /**操作人类型-管理员*/
    public static final int OPERATOR_TYPE_ADMIN = 2;
    /**操作人类型-系统*/
    public static final int OPERATOR_TYPE_SYSTEM = 3;
    public static final int OPERATOR_TYPE_SYSTEM = 0;
    /**操作人类型-管理员*/
    public static final int OPERATOR_TYPE_ADMIN = 1;
    /**操作人类型-用户*/
    public static final int OPERATOR_TYPE_USER = 2;
    /**操作人类型-员工*/
    public static final int OPERATOR_TYPE_EMPLOYEE = 3;
    /**操作类型-系统处理*/
    public static final int OP_TYPE_SYS = 0;
phis-feign/src/main/java/com/hz/his/feign/service/phis/SOrderService.java
@@ -25,5 +25,17 @@
    @PostMapping(value = "/order/detail")
    Result orderDetail(@RequestParam("orderId") String orderId);
    /**
     * 根据商品id查询订单数量
     */
    @PostMapping(value = "/order/numByGoodsId")
    Result queryOrderNumByGoodsId(@RequestParam("goodsId") String goodsId);
    /**
     * 根据活动id查询订单数量
     */
    @PostMapping(value = "/order/numByActivityId")
    Result queryOrderNumByActivityId(@RequestParam("activityId") String activityId);
}
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipUserMoneyService.java
@@ -22,7 +22,7 @@
    /**
     * 开放平台-用户资产修改
     */
    @PostMapping(value = "/phip/user/money/unclaimed/add")
    @PostMapping(value = "/user/money/unclaimed/add")
    Result userMoneyUpdate(@RequestBody UserMoneyUpdateDto userMoneyUpdateDto);
}
phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncProjectService.java
@@ -27,4 +27,12 @@
     */
    @GetMapping(value = "/sync/project/update/service/tree")
    Result updateServiceTree(@RequestBody JSONObject jsonObject);
    /**
     * 同步his用户可划扣的数据
     * @param jsonObject 参数
     * @return 返回
     */
    @GetMapping(value = "/sync/executionRecord/executable")
    Result syncExecutionRecord(@RequestBody JSONObject jsonObject);
}