张天森
2022-10-13 00cdd830b7df0dfe3272fc9f2b3f13f1e2b3f5ba
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/McsOrderService.java
@@ -28,5 +28,31 @@
     */
    R insert(McsOrderVO mcsOrderVO);
    /**
     * 详情
     * @param id
     * @return
     */
    R detail(Long id);
    /**
     * 支付
     * @param mcsOrderVO
     * @return
     */
    R wxPay(McsOrderVO mcsOrderVO);
    /**
     *订单id查询手机号
     * @param id
     * @return
     */
    R sendContent(Long id);
    /**
     *微信支付回调
     * @param mcsOrderVO
     * @return
     */
    R notify(McsOrderVO mcsOrderVO);
}