package com.panzhihua.service_community.service;
|
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.common.model.dtos.property.CommonPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.vos.community.microCommercialStreet.McsOrderVO;
|
import com.panzhihua.service_community.entity.McsOrder;
|
|
/**
|
* 商业街订单表(McsOrder)表服务接口
|
*
|
* @author makejava
|
* @since 2022-01-04 16:10:07
|
*/
|
public interface McsOrderService extends IService<McsOrder> {
|
/**
|
* 分页查询
|
*
|
* @param commonPage
|
* @return
|
*/
|
R pageList(CommonPage commonPage);
|
|
/**
|
* 创建订单
|
* @param mcsOrderVO
|
* @return
|
*/
|
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);
|
}
|