| | |
| | | package com.oying.modules.sh.service; |
| | | |
| | | import com.oying.modules.sh.domain.Order; |
| | | import com.oying.modules.sh.domain.OrderAddressSnapshot; |
| | | import com.oying.modules.sh.domain.OrderOperationLog; |
| | | import com.oying.modules.sh.domain.dto.OrderOperationLogQueryCriteria; |
| | | import java.util.List; |
| | |
| | | void create(OrderOperationLog resources); |
| | | |
| | | /** |
| | | * 创建 |
| | | */ |
| | | void create(Order order, OrderAddressSnapshot addressSnapshot); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param resources / |
| | | */ |
| | |
| | | * @throws IOException / |
| | | */ |
| | | void download(List<OrderOperationLog> all, HttpServletResponse response) throws IOException; |
| | | |
| | | List<OrderOperationLog> getByOrderNum(String orderNum); |
| | | } |