hyingbo
2025-05-27 3a740faa161ec976986c0735ba18837f570a525f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.MdcImplementLedgersSub;
import org.jeecg.modules.mdc.mapper.MdcImplementLedgersSubMapper;
import org.jeecg.modules.mdc.service.IMdcImplementLedgersSubService;
import org.springframework.stereotype.Service;
 
/**
 * @Description: 实施台账子表
 * @Author: lius
 * @Date:   2024-11-22
 * @Version: V1.0
 */
@Service
public class MdcImplementLedgersSubServiceImpl extends ServiceImpl<MdcImplementLedgersSubMapper, MdcImplementLedgersSub> implements IMdcImplementLedgersSubService {
 
}