14 lines
385 B
Java
14 lines
385 B
Java
|
|
package com.unisinsight.project.service;
|
||
|
|
|
||
|
|
import com.unisinsight.project.entity.dao.DeviceUserMapping;
|
||
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author rdpnr_puzhi
|
||
|
|
* @description 针对表【device_user_mapping】的数据库操作Service
|
||
|
|
* @createDate 2025-08-06 11:07:39
|
||
|
|
*/
|
||
|
|
public interface DeviceUserMappingService extends IService<DeviceUserMapping> {
|
||
|
|
|
||
|
|
}
|