26 lines
534 B
Java
26 lines
534 B
Java
|
|
package com.backend.webbackend.mapper;
|
||
|
|
|
||
|
|
import com.backend.webbackend.domain.Device;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author Quella
|
||
|
|
* @description 针对表【device(设备表)】的数据库操作Mapper
|
||
|
|
* @createDate 2026-01-12 16:27:05
|
||
|
|
* @Entity generator.domain.Device
|
||
|
|
*/
|
||
|
|
public interface DeviceMapper {
|
||
|
|
|
||
|
|
int deleteByPrimaryKey(Long id);
|
||
|
|
|
||
|
|
int insert(Device record);
|
||
|
|
|
||
|
|
int insertSelective(Device record);
|
||
|
|
|
||
|
|
Device selectByPrimaryKey(Long id);
|
||
|
|
|
||
|
|
int updateByPrimaryKeySelective(Device record);
|
||
|
|
|
||
|
|
int updateByPrimaryKey(Device record);
|
||
|
|
|
||
|
|
}
|