admin
2019-10-22 04f5c3bd20524c97dce07cc03bb24e190303083a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.fanli.dao.mybatis.order;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.order.InviteOrderSubsidy;
 
public interface InviteOrderSubsidyMapper extends BaseMapper<InviteOrderSubsidy> {
 
    /**
     * 查询用户补贴
     * @param uid
     * @param orderNo
     * @param Type
     * @return
     */
    InviteOrderSubsidy getByOrderNoAndType(@Param("uid")Long uid, @Param("orderNo")String orderNo,@Param("type") Integer type);
}