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.
38 lines
980 B
Java
38 lines
980 B
Java
package com.glxp.api.service.thrsys;
|
|
|
|
|
|
import com.glxp.api.entity.thrsys.ThrOrderEntity;
|
|
import com.glxp.api.req.thrsys.FilterThrOrderRequest;
|
|
import com.glxp.api.res.thrsys.ThrErpOrderResponse;
|
|
import com.glxp.api.res.thrsys.ThrOrderResponse;
|
|
|
|
import java.util.List;
|
|
|
|
public interface ThrOrderService {
|
|
|
|
List<ThrOrderEntity> filterThrOrder(FilterThrOrderRequest filterThrOrderRequest);
|
|
|
|
|
|
List<ThrErpOrderResponse> filterAllOrders(List<String> billNos, String action);
|
|
|
|
List<ThrOrderResponse> filterAllDetail(FilterThrOrderRequest filterThrOrderRequest);
|
|
|
|
ThrOrderEntity findByUnique(String billNo, String thirdSysFk);
|
|
|
|
ThrOrderEntity findReceiveOrder(String billNo);
|
|
|
|
ThrOrderEntity findById(Integer id);
|
|
|
|
boolean insertThrOrder(ThrOrderEntity thrCorpEntity);
|
|
|
|
boolean insertThrOrders(List<ThrOrderEntity> thrOrderEntities);
|
|
|
|
int updateThrOrder(ThrOrderEntity thrOrderEntity);
|
|
|
|
boolean deleteById(String id);
|
|
|
|
boolean deleteAll();
|
|
|
|
|
|
}
|