严智鑫
2025-06-13 d14cdaf28222bfef468185e34de7c823f1436b19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.mes.model.service.impl;
 
import com.github.yulichang.base.MPJBaseServiceImpl;
import com.mes.model.entity.Machine;
import com.mes.model.entity.PlcType;
import com.mes.model.mapper.MachineMapper;
import com.mes.model.mapper.PlcTypeMapper;
import com.mes.model.service.MachineService;
import com.mes.model.service.PlcTypeService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 账户表 服务实现类
 * </p>
 *
 * @author yanzhixin
 * @since 2024-09-03
 */
@Slf4j
@Service
public class PlcTypeServiceImpl extends MPJBaseServiceImpl<PlcTypeMapper, PlcType> implements PlcTypeService {
 
 
}