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.
|
|
|
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.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);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询单据实体列表
|
|
|
|
*
|
|
|
|
* @param filterOrderRequest
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
List<IoOrderEntity> filterOrderList(FilterOrderRequest filterOrderRequest);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询补单单号为空的单据号
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
List<IoOrderEntity> selectSupplementOrderList();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询所有关联的所有单据字段的值
|
|
|
|
*
|
|
|
|
* @param billNo
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
OrderNoResult selectBillNos(@Param("billNo") String billNo);
|
|
|
|
}
|