| | |
| | | package com.yeshi.fanli.dao.mybatis.taobao; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.taobao.TaoBaoWeiQuanDrawBack; |
| | | |
| | | public interface TaoBaoWeiQuanDrawBackMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(TaoBaoWeiQuanDrawBack record); |
| | | |
| | | int insertSelective(TaoBaoWeiQuanDrawBack record); |
| | | |
| | | TaoBaoWeiQuanDrawBack selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(TaoBaoWeiQuanDrawBack record); |
| | | |
| | | int updateByPrimaryKey(TaoBaoWeiQuanDrawBack record); |
| | | |
| | | /** |
| | | * 通过订单号和红包ID获取维权退款数据 |
| | | * |
| | | * @param orderItemId |
| | | * @param hongBaoId |
| | | * @return |
| | | */ |
| | | TaoBaoWeiQuanDrawBack selectByOrderItemIdAndUid(@Param("orderItemId") String orderItemId, @Param("uid") Long uid); |
| | | |
| | | /** |
| | | * 根据子订单号查询 |
| | | * |
| | | * @param orderItemId |
| | | * @return |
| | | */ |
| | | List<TaoBaoWeiQuanDrawBack> selectByOrderItemId(String orderItemId); |
| | | package com.yeshi.fanli.dao.mybatis.taobao;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoWeiQuanDrawBack;
|
| | |
|
| | | public interface TaoBaoWeiQuanDrawBackMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int insert(TaoBaoWeiQuanDrawBack record);
|
| | |
|
| | | int insertSelective(TaoBaoWeiQuanDrawBack record);
|
| | |
|
| | | TaoBaoWeiQuanDrawBack selectByPrimaryKey(Long id);
|
| | |
|
| | | int updateByPrimaryKeySelective(TaoBaoWeiQuanDrawBack record);
|
| | |
|
| | | int updateByPrimaryKey(TaoBaoWeiQuanDrawBack record);
|
| | |
|
| | | /**
|
| | | * 通过订单号和红包ID获取维权退款数据
|
| | | * |
| | | * @param orderItemId
|
| | | * @param hongBaoId
|
| | | * @return
|
| | | */
|
| | | TaoBaoWeiQuanDrawBack selectByOrderItemIdAndUid(@Param("orderItemId") String orderItemId, @Param("uid") Long uid);
|
| | |
|
| | | /**
|
| | | * 根据子订单号查询
|
| | | * |
| | | * @param orderItemId
|
| | | * @return
|
| | | */
|
| | | List<TaoBaoWeiQuanDrawBack> selectByOrderItemId(String orderItemId);
|
| | | } |