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 {
|
|
}
|