Lius
2024-10-18 2f4d58a807ae1d91e43f7d7df33ce6b414c794ad
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.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 {
 
}