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.
83 lines
2.1 KiB
Java
83 lines
2.1 KiB
Java
package com.glxp.api.dao.inout;
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
import com.glxp.api.entity.inout.IoOrderEntity;
|
|
import com.glxp.api.req.inout.FilterOrderRequest;
|
|
import com.glxp.api.req.inout.FilterUploadOrderRequest;
|
|
import com.glxp.api.res.inout.IoOrderResponse;
|
|
import com.glxp.api.res.inout.OrderNoResult;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IoOrderDao extends BaseMapperPlus<IoOrderDao, IoOrderEntity, IoOrderEntity> {
|
|
|
|
/**
|
|
* 查询单据VO列表
|
|
*
|
|
* @param filterOrderRequest
|
|
* @return
|
|
*/
|
|
List<IoOrderResponse> filterList(FilterOrderRequest filterOrderRequest);
|
|
|
|
List<IoOrderResponse> getfilterList(FilterOrderRequest filterOrderRequest);
|
|
|
|
List<IoOrderResponse> getfilterOrderList(FilterOrderRequest filterOrderRequest);
|
|
|
|
|
|
/**
|
|
* 查询单据实体列表
|
|
*
|
|
* @param filterOrderRequest
|
|
* @return
|
|
*/
|
|
List<IoOrderEntity> filterOrderList(FilterOrderRequest filterOrderRequest);
|
|
|
|
|
|
/**
|
|
* 查询补单单号为空的单据号
|
|
*
|
|
* @return
|
|
*/
|
|
List<IoOrderEntity> selectSupplementOrderList();
|
|
|
|
/**
|
|
* 查询所有关联的所有单据字段的值
|
|
*
|
|
* @param billNo
|
|
* @return
|
|
*/
|
|
OrderNoResult selectBillNos(@Param("billNo") String billNo);
|
|
|
|
/**
|
|
* 查询上传单据列表
|
|
*
|
|
* @param uploadOrderRequest
|
|
* @return
|
|
*/
|
|
List<IoOrderResponse> selectUploadOrder(FilterUploadOrderRequest uploadOrderRequest);
|
|
|
|
/**
|
|
* 查询单据的类型
|
|
*
|
|
* @param billNo
|
|
* @return
|
|
*/
|
|
String selectActionByBillNo(@Param("billNo") String billNo);
|
|
|
|
/**
|
|
* 查询待提交到第三方系统的单据的单号
|
|
*
|
|
* @return
|
|
*/
|
|
List<String> selectWaitSubmitOrder(@Param("thirdSys") String thirdSys);
|
|
|
|
boolean updateOrder(IoOrderEntity orderEntity);
|
|
|
|
List<String> selectOrderIdList(@Param("data") String data);
|
|
|
|
List<String> selectOrderfirstAndLastIdList(@Param("firstData") String firstData, @Param("lastData") String lastData);
|
|
|
|
List<IoOrderResponse> getfilterOrderList(FilterOrderRequest filterOrderRequest);
|
|
}
|