shiyunteng
7 天以前 db12bb4a131e547d4d0b6e3fae33faba5465974d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.HistoryOverdue;
import com.by4cloud.platformx.business.mapper.HistoryOverdueMapper;
import com.by4cloud.platformx.business.service.HistoryOverdueService;
import org.springframework.stereotype.Service;
/**
 * 历史逾期
 *
 * @author syt
 * @date 2026-04-29 11:31:18
 */
@Service
public class HistoryOverdueServiceImpl extends ServiceImpl<HistoryOverdueMapper, HistoryOverdue> implements HistoryOverdueService {
}