zss
2023-09-11 19b596d3c05b1ca7ff80d8b802e7f6e03ad77dad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yuanchu.mom.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yuanchu.mom.mapper.ElementMapper;
import com.yuanchu.mom.pojo.Element;
import com.yuanchu.mom.service.ElementService;
import org.springframework.stereotype.Service;
 
/**
 * 元件表(Element)表服务实现类
 *
 * @author zss
 * @since 2023-08-28 10:48:45
 */
@Service
public class ElementServiceImpl extends ServiceImpl<ElementMapper, Element> implements ElementService {
 
}