init
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user