xuhy
6 小时以前 57ace2e2e90f36ba2df2465f0b1b6b1b9e931e88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.stylefeng.guns.modular.system.dao;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.stylefeng.guns.modular.system.model.OrderCancel;
import org.apache.ibatis.annotations.Param;
 
public interface OrderCancelMapper extends BaseMapper<OrderCancel> {
 
    /**
     * 获取数据
     * @param orderId
     * @param orderType
     * @param money
     * @param payType
     * @param state
     * @return
     */
    OrderCancel query(@Param("orderId") Integer orderId, @Param("orderType") Integer orderType,
                      @Param("money") Double money, @Param("payType") Integer payType,
                      @Param("state") Integer state);
 
}