package org.jeecg.modules.mdc.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.mdc.entity.ComponentInfo;
|
import org.jeecg.modules.mdc.mapper.ComponentInfoMapper;
|
import org.jeecg.modules.mdc.service.IComponentInfoService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: 零件表
|
* @Author: lius
|
* @Date: 2024-10-18
|
* @Version: V1.0
|
*/
|
@Service
|
public class ComponentInfoServiceImpl extends ServiceImpl<ComponentInfoMapper, ComponentInfo> implements IComponentInfoService {
|
|
}
|