package platform.modules.carrier.dao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import platform.common.base.mapper.BaseMapper; import platform.modules.carrier.entity.CarrierVolume; import platform.modules.carrier.entity.ContractFloor; import java.util.List; @Repository public interface ContractFloorDao extends BaseMapper { Integer insertBatch(@Param("list") List list); Integer deleteByContractId(@Param("id") Integer id); List findByContractId(@Param("id") Integer id); List findEndContract(); List findStartContract(); List finderminateContract(); Integer findCarrierVolume(@Param("startTime") String startTime, @Param("endTime") String endTime); List findEachParkVolume(@Param("startTime") String startTime, @Param("endTime") String endTime); List findEndContractByTime(@Param("startTime") String startTime, @Param("endTime") String endTime, @Param("id") Integer id); }