| | |
| | | package com.by4cloud.platformx.business.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.by4cloud.platformx.business.dto.ContractOutBoundQueryDTO; |
| | | import com.by4cloud.platformx.business.dto.CreditSalesQueryDTO; |
| | | import com.by4cloud.platformx.business.vo.HomeOutBoundVo; |
| | | import com.by4cloud.platformx.business.vo.HomeZbjtVo; |
| | | import com.by4cloud.platformx.business.vo.HomeZgsVo; |
| | | import com.by4cloud.platformx.common.data.datascope.DataScope; |
| | | import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper; |
| | | import com.by4cloud.platformx.business.entity.ContractOutBound; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | @Mapper |
| | | public interface ContractOutBoundMapper extends PlatformxBaseMapper<ContractOutBound> { |
| | | |
| | | |
| | | HomeZbjtVo homeZbjt(); |
| | | |
| | | HomeZbjtVo homeZbjtSX(); |
| | | |
| | | HomeZgsVo homeZgs(@Param("compId") Long compId); |
| | | |
| | | HomeZgsVo homeZgsSX(@Param("compId")Long compId); |
| | | |
| | | Page<HomeOutBoundVo> pageScope(Page page, @Param("queryDTO") ContractOutBoundQueryDTO queryDTO, DataScope comp_id); |
| | | |
| | | Page<HomeOutBoundVo> pageByCredit(Page page,@Param("queryDTO") CreditSalesQueryDTO queryDTO, DataScope comp_id); |
| | | } |