zhaowei
2025-07-16 f7c94e8f1b68340052b8cd4a7ed9e5be41e6d078
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 {
 
}