You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
538 B
Java
20 lines
538 B
Java
package com.glxp.api.dao.dev;
|
|
|
|
import com.glxp.api.dao.BaseMapperPlus;
|
|
import com.glxp.api.entity.dev.DeviceCheckItemDictEntity;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.glxp.api.vo.dev.DeviceCheckItemDictVo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 针对表【device_check_item_dict(巡检项目字典)】的数据库操作Mapper
|
|
*/
|
|
@Mapper
|
|
public interface DeviceCheckItemDictMapper extends BaseMapperPlus<DeviceCheckItemDictMapper, DeviceCheckItemDictEntity, DeviceCheckItemDictEntity> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|