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