|
|
@@ -1,11 +1,9 @@
|
|
|
package com.uas.platform.b2b.service;
|
|
|
|
|
|
import org.apache.poi.ss.usermodel.Workbook;
|
|
|
-import org.springframework.data.domain.Page;
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
|
|
import com.uas.platform.b2b.model.DeputyOrder;
|
|
|
-import com.uas.platform.core.model.PageInfo;
|
|
|
|
|
|
public interface DeputyOrderService {
|
|
|
|
|
|
@@ -26,12 +24,11 @@ public interface DeputyOrderService {
|
|
|
public ModelMap saveDeOrder(DeputyOrder deorder);
|
|
|
|
|
|
/**
|
|
|
- * 获取代采订单信息
|
|
|
+ * 获取详情
|
|
|
*
|
|
|
- * @param pageInfo
|
|
|
- * @param status
|
|
|
+ * @param id
|
|
|
* @return
|
|
|
*/
|
|
|
- public Page<DeputyOrder> getDeOrder(PageInfo pageInfo);
|
|
|
+ public DeputyOrder getOrderDetail(Long id);
|
|
|
|
|
|
}
|