shiyunteng
2026-06-22 838618d0d4a7dd3b585a3a7390fa389e555c9bb0
platformx-business-finance-biz/src/main/java/com/by4cloud/platformx/business/mapper/ContractPaymentScheduleMapper.java
@@ -1,11 +1,31 @@
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);
   List<AgingVo> selectAgingTotalScale(@Param("queryDTO") AgingQueryDTO queryDTO);
}