This commit is contained in:
lx
2026-01-15 10:53:54 +08:00
commit 9b2543f7f7
80 changed files with 2995 additions and 0 deletions

View File

@@ -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);
}