shiyunteng
1 天以前 8de09297dcc5393cc8542f29318b17f5696d4f8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.by4cloud.platformx.business.mapper;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.by4cloud.platformx.business.dto.PaymentSlipQueryDTO;
import com.by4cloud.platformx.business.entity.PaymentSlip;
 
import com.by4cloud.platformx.business.vo.HomeOutBoundVo;
import com.by4cloud.platformx.business.vo.HomePaymentSlipVo;
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 org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface PaymentSlipMapper extends PlatformxBaseMapper<PaymentSlip> {
 
 
    HomeZbjtVo homeZbjt();
 
    HomeZgsVo homeZgs(@Param("compId") Long compId);
 
    Page<HomePaymentSlipVo> pageScope(Page page, @Param("queryDTO") PaymentSlipQueryDTO queryDTO, DataScope comp_id);
}