30 lines
871 B
Java
30 lines
871 B
Java
|
|
package com.gunshi.project.xyt.service;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
|
import com.gunshi.project.xyt.entity.vo.HomeOsmoticShiftDeviceVo;
|
||
|
|
import com.gunshi.project.xyt.mapper.OsmoticShiftDeviceMapper;
|
||
|
|
import com.gunshi.project.xyt.model.OsmoticShiftDevice;
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
import org.springframework.transaction.annotation.Transactional;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 位移监测记录表
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-07-08 17:30:37
|
||
|
|
*/
|
||
|
|
@Service
|
||
|
|
@Slf4j
|
||
|
|
@Transactional(rollbackFor = Exception.class)
|
||
|
|
public class OsmoticShiftDeviceService extends ServiceImpl<OsmoticShiftDeviceMapper, OsmoticShiftDevice>
|
||
|
|
{
|
||
|
|
|
||
|
|
public List<HomeOsmoticShiftDeviceVo> getDetailsAndMonitoringDataList() {
|
||
|
|
return baseMapper.getDetailsAndMonitoringDataList();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|