tjx
2 天以前 88a106141826b817a6d4b8e41c48160cef011f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.hk.NumericalCollection.service;
 
import com.hk.NumericalCollection.entity.DevMachine;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
* @author Administrator
* @description 针对表【DEV_MACHINE】的数据库操作Service
* @createDate 2024-10-15 09:22:38
*/
public interface DevMachineService extends IService<DevMachine> {
 
}