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.
18 lines
517 B
Java
18 lines
517 B
Java
package com.glxp.api.dao.inv;
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
import com.glxp.api.entity.inv.InvPreinOrderEntity;
|
|
import com.glxp.api.req.inv.FilterInvPreinRequest;
|
|
import com.glxp.api.res.inv.InvPreinOrderResponse;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface InvPreinOrderDao extends BaseMapperPlus<InvPreinOrderDao, InvPreinOrderEntity, InvPreinOrderEntity> {
|
|
|
|
|
|
List<InvPreinOrderResponse> filterList(FilterInvPreinRequest filterInvPreinRequest);
|
|
|
|
}
|