mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
26
package com.panzhihua.service_community.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.panzhihua.common.model.dtos.property.CommonPage;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.service_community.entity.RentingHoursePayingOrder;
import com.panzhihua.service_community.dao.RentingHoursePayingOrderDao;
import com.panzhihua.service_community.service.RentingHoursePayingOrderService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
/**
 * 房屋租赁-支付流水记录表(RentingHoursePayingOrder)表服务实现类
 *
 * @author makejava
 * @since 2021-11-23 10:47:17
 */
@Slf4j
@Service
public class RentingHoursePayingOrderServiceImpl extends ServiceImpl<RentingHoursePayingOrderDao, RentingHoursePayingOrder> implements RentingHoursePayingOrderService {
 
    @Override
    public R pageList(CommonPage commonPage) {
        return null;
    }
}