| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.admin.ReslutOrder;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoOrder;
|
| | | import com.yeshi.fanli.vo.order.TaoBaoOrderVO;
|
| | |
|
| | | /**
|
| | | * 淘宝订单服务
|
| | |
| | | */
|
| | | public List<TaoBaoOrder> getTaoBaoOrderByOrderId(String orderId);
|
| | |
|
| | | |
| | | |
| | | /**
|
| | | * 查询订单--关联红包
|
| | | * @param start
|
| | | * @param count
|
| | | * @param key
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @param type
|
| | | * @param days
|
| | | * @return
|
| | | */
|
| | | public List<ReslutOrder> queryJoinHongBao(int start, int count, String key, String startTime, String endTime, Integer type, Integer days) throws Exception;
|
| | |
|
| | | public int countQueryJoinHongBao(String key, String startTime, String endTime, Integer type, Integer days) throws Exception;
|
| | | |
| | | |
| | | /**
|
| | | * 统计当日预估收益
|
| | | * @param date 2018-09-01
|
| | | * |
| | | * @param date
|
| | | * 2018-09-01
|
| | | * @return
|
| | | */
|
| | | public double countEstimate(String date) throws Exception;
|
| | |
|
| | | |
| | | /**
|
| | | * 根据订单号、金额查询订单状态
|
| | | * @param orderId
|
| | | * @param payment
|
| | | * @return
|
| | | * @throws Exception
|
| | | * 绑定会员运营ID与渠道ID(根据交易ID)
|
| | | * |
| | | * @param tadeId
|
| | | * @param specialId
|
| | | * @param realtionId
|
| | | */
|
| | | public List<TaoBaoOrder> getStateByOrderIdAndPayment(String orderId, String payment) throws Exception;
|
| | |
|
| | | |
| | | /**
|
| | | * 后端查询商品列表
|
| | | * @param start
|
| | | * @param count
|
| | | * @param keyType
|
| | | * @param key
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @param state
|
| | | * @return
|
| | | * @throws Exception
|
| | | */
|
| | | public List<TaoBaoOrderVO> listQuery(int start, int count, String key, String startTime, String endTime,
|
| | | Integer state) throws Exception;
|
| | |
|
| | | public long countQuery(String key, String startTime, String endTime, Integer state) throws Exception;
|
| | | public void bindSpecialIdAndRealtionId(String tradeId, String specialId, String realtionId);
|
| | |
|
| | | }
|