Commit 150bade8 authored by 谢希宇's avatar 谢希宇

Aidea product update by Strive Date 2020-10-30

parent 26af6e73
...@@ -12,38 +12,50 @@ import java.util.List; ...@@ -12,38 +12,50 @@ import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* 订单管理Mapper * 订单管理Mapper
* *
* @author Licc * @author Licc
* @date: 2020-10-10 14:20 * @date: 2020-10-10 14:20
*/ */
public interface OrderMapper extends GenericDao<Order> { public interface OrderMapper extends GenericDao<Order> {
Integer deleteAll(@Param("id") Long id); Integer deleteAll(@Param("id") Long id);
List<Order> fetchSearchBy(Conds conds, Sort sort, int page, int pageSize, Long id);
List<ProductOrder> listProduct(); List<ProductOrder> listProduct();
OrderFromVO fetchId(Serializable id); OrderFromVO fetchId(Serializable id);
List<OrderFromVO> fetchProductId(Serializable id); List<OrderFromVO> fetchProductId(Serializable id);
ProductDto fetchProduct(Map<String,Object> params);
ProductDto fetchProduct(Map<String, Object> params);
Integer saveDetill(OrderDetailDto orderDetailDto); Integer saveDetill(OrderDetailDto orderDetailDto);
Integer fetcheDeta(Map<String, Object> params); Integer fetcheDeta(Map<String, Object> params);
Integer updateDetill(Map<String, Object> params); Integer updateDetill(Map<String, Object> params);
Order fetchOrder(Long id); Order fetchOrder(Long id);
Integer updateOrder(Map<String, Object> params); Integer updateOrder(Map<String, Object> params);
/** /**
* @return
* @Author Licc * @Author Licc
* @Description 查询所有订单信息 * @Description 查询所有订单信息
* @Date 15:45 2020/10/30 * @Date 15:45 2020/10/30
* @Param * @Param
* @return
**/ **/
List<OrderMobile> orderFall(@Param("openid") String openid, @Param("status")Long status, @Param("id")Long id); List<OrderMobile> orderFall(@Param("openid") String openid, @Param("status") Long status, @Param("id") Long id);
/** /**
* @return
* @Author Licc * @Author Licc
* @Description 根据订单ID查询订单详情 * @Description 根据订单ID查询订单详情
* @Date 10:46 2020/11/1 * @Date 10:46 2020/11/1
* @Param * @Param
* @return
**/ **/
List<ProductMobile> orderDetill(@Param("orderId")Long orderId); List<ProductMobile> orderDetill(@Param("orderId") Long orderId);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment