| | |
| | | package com.by4cloud.platformx.business.mapper; |
| | | |
| | | import com.by4cloud.platformx.business.dto.AgingQueryDTO; |
| | | import com.by4cloud.platformx.business.entity.ContractPaymentSchedule; |
| | | import com.by4cloud.platformx.business.vo.AgingCompanyVo; |
| | | import com.by4cloud.platformx.business.vo.AgingVo; |
| | | import com.by4cloud.platformx.common.data.datascope.DataScope; |
| | | import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface ContractPaymentScheduleMapper extends PlatformxBaseMapper<ContractPaymentSchedule> { |
| | | |
| | | |
| | | List<AgingCompanyVo> selectAgingCompany(@Param("queryDTO") AgingQueryDTO queryDT,DataScope compId); |
| | | |
| | | List<AgingVo> selectAgingTotal(@Param("queryDTO") AgingQueryDTO queryDTO); |
| | | |
| | | List<AgingCompanyVo> selectAgingCompanyShip(DataScope comp_id); |
| | | |
| | | List<AgingCompanyVo> selectAgingCompanyInvoice(DataScope comp_id); |
| | | |
| | | List<AgingVo> selectAgingTotalShip(@Param("queryDTO") AgingQueryDTO queryDTO); |
| | | |
| | | List<AgingVo> selectAgingTotalInvoice(@Param("queryDTO") AgingQueryDTO queryDTO); |
| | | } |