|  |  |  | 
|---|
|  |  |  | import com.ruoyi.alarm.tube.mapper.ArdAlarmTubeMapper; | 
|---|
|  |  |  | import com.ruoyi.alarm.tube.service.IArdAlarmTubeService; | 
|---|
|  |  |  | import com.ruoyi.common.utils.DateUtils; | 
|---|
|  |  |  | import com.ruoyi.common.utils.uuid.IdUtils; | 
|---|
|  |  |  | import org.springframework.stereotype.Service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.annotation.Resource; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public int insertArdAlarmTube(ArdAlarmTube ardAlarmTube) { | 
|---|
|  |  |  | ardAlarmTube.setCreateTime(DateUtils.getNowDate()); | 
|---|
|  |  |  | return ardAlarmTubeMapper.insertArdAlarmTube(ardAlarmTube); | 
|---|
|  |  |  | ardAlarmTube.setTubeId(IdUtils.simpleUUID()); | 
|---|
|  |  |  | ardAlarmTube.setCreateTime(DateUtils.getNowDate()); | 
|---|
|  |  |  | return ardAlarmTubeMapper.insertArdAlarmTube(ardAlarmTube); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|