17 lines
318 B
Java
17 lines
318 B
Java
package com.mini.mybigscreen.biz.mapper;
|
|
|
|
import com.github.yulichang.base.MPJBaseMapper;
|
|
import com.mini.mybigscreen.biz.domain.WarningAlert;
|
|
|
|
/**
|
|
* <p>
|
|
* 预警提示表 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author gaoxq
|
|
* @since 2026-03-08
|
|
*/
|
|
public interface WarningAlertMapper extends MPJBaseMapper<WarningAlert> {
|
|
|
|
}
|