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.
30 lines
904 B
Java
30 lines
904 B
Java
1 year ago
|
package com.shxy.xyhkcamera.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
||
|
import com.shxy.xyhkcamera.entity.ModevEaifEntity;
|
||
|
import com.shxy.xyhkcamera.entity.ModevEntity;
|
||
|
import com.shxy.xyhkcamera.service.ModevEaifService;
|
||
|
import com.shxy.xyhkcamera.service.ModevService;
|
||
|
import com.shxy.xyhkcamera.service.TempMeasureService;
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
import java.sql.Wrapper;
|
||
|
import java.util.List;
|
||
|
|
||
|
@Service
|
||
|
@Slf4j
|
||
|
public class TempMeasureServiceImpl implements TempMeasureService {
|
||
|
@Autowired
|
||
|
ModevServiceImp modevService;
|
||
|
|
||
|
@Override
|
||
|
public void measure() {
|
||
|
// hcNetSdkUtil.createSDKInstance();
|
||
|
// List<ModevEntity> list = modevService.list(Wrappers.lambdaQuery(ModevEntity.class).eq(ModevEntity::getModevtid, 9));
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|