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.
36 lines
928 B
Java
36 lines
928 B
Java
package com.glxp.api.service.purchase;
|
|
|
|
|
|
import com.glxp.api.entity.inout.PurReceiveEntity;
|
|
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.Date;
|
|
import java.util.List;
|
|
|
|
public interface PurOrderService {
|
|
|
|
|
|
PurOrderEntity selectByBillNo(String billNo);
|
|
|
|
PurOrderEntity selectById(Long id);
|
|
|
|
List<PurOrderResponse> queryPageList(PurOrderRequest purOrderRequest);
|
|
|
|
List<PurOrderEntity> findByStatus(String billType, Integer status, Date lastUpdateTime);
|
|
|
|
Boolean insert(PurOrderEntity purOrderEntity);
|
|
|
|
Boolean update(PurOrderEntity purOrderEntity);
|
|
|
|
Boolean deleteByIds(List<Integer> ids);
|
|
|
|
Boolean deleteById(long id);
|
|
|
|
|
|
}
|