You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
668 B
Java
28 lines
668 B
Java
2 years ago
|
package com.glxp.api.service.purchase;
|
||
|
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.purchase.PurOrderEntity;
|
||
|
import com.glxp.api.entity.purchase.PurPlanEntity;
|
||
|
import com.glxp.api.req.purchase.PurOrderRequest;
|
||
|
import com.glxp.api.req.purchase.PurPlanRequest;
|
||
|
import com.glxp.api.res.purchase.PurOrderResponse;
|
||
|
import com.glxp.api.res.purchase.PurPlanResponse;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface PurOrderService {
|
||
|
|
||
|
List<PurOrderResponse> queryPageList(PurOrderRequest purOrderRequest);
|
||
|
|
||
|
Boolean insert(PurOrderEntity purOrderEntity);
|
||
|
|
||
|
Boolean update(PurOrderEntity purOrderEntity);
|
||
|
|
||
|
Boolean deleteByIds(List<Integer> ids);
|
||
|
|
||
|
Boolean deleteById(long id);
|
||
|
|
||
|
|
||
|
}
|