package com.glxp.api.dao.thrsys; import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.thrsys.ThrBusTypeOriginEntity; import com.glxp.api.entity.thrsys.ThrOrderEntity; import com.glxp.api.req.thrsys.FilterThrOrderRequest; import com.glxp.api.res.thrsys.ThrBusTypeOriginResponse; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface ThrOrderDao extends BaseMapperPlus { List filterThrOrder(FilterThrOrderRequest filterThrOrderRequest); boolean insertThrOrder(ThrOrderEntity thrCorpEntity); boolean importThrOrder(ThrOrderEntity thrCorpEntity); boolean insertThrOrders(@Param("thrOrderEntities") List thrOrderEntities); boolean deleteById(@Param("id") String id); boolean deleteAll(); }