2026-04-17 10:32:57 +08:00
|
|
|
package com.maibu.mapper;
|
|
|
|
|
|
2026-04-17 17:12:41 +08:00
|
|
|
import com.maibu.entity.IoTDADeviceSecret;
|
|
|
|
|
import com.maibu.mybatis.mapper.BaseMapperX;
|
2026-04-17 10:32:57 +08:00
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备历史状态
|
|
|
|
|
*/
|
|
|
|
|
@Repository
|
|
|
|
|
public interface IoTDADeviceSecretMapper extends BaseMapperX<IoTDADeviceSecret> {
|
|
|
|
|
|
|
|
|
|
}
|