shiyunteng
6 天以前 fc8c86e7a365d5c6bdc37c2b05b9f83115ac2bc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.device.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.device.entity.DeviceManufacturer;
import com.by4cloud.platformx.device.mapper.DeviceManufacturerMapper;
import com.by4cloud.platformx.device.service.DeviceManufacturerService;
import org.springframework.stereotype.Service;
/**
 * 设备厂商
 *
 * @author syt
 * @date 2025-03-26 08:46:59
 */
@Service
public class DeviceManufacturerServiceImpl extends ServiceImpl<DeviceManufacturerMapper, DeviceManufacturer> implements DeviceManufacturerService {
}