| | |
| | | import java.util.concurrent.CountDownLatch; |
| | | import java.util.concurrent.atomic.AtomicInteger; |
| | | |
| | | import com.yssh.dao.QxshMapper; |
| | | import com.yssh.entity.*; |
| | | import com.yssh.utils.*; |
| | | import org.apache.commons.logging.Log; |
| | | import org.apache.commons.logging.LogFactory; |
| | |
| | | import com.yssh.dao.DictRecordMapper; |
| | | import com.yssh.dao.FeedbackMapper; |
| | | import com.yssh.dao.SuYuanMapper; |
| | | import com.yssh.entity.DictRecord; |
| | | import com.yssh.entity.DistanceSuYuan; |
| | | import com.yssh.entity.FeedbackDetail; |
| | | import com.yssh.entity.MonitorPointPosition; |
| | | import com.yssh.entity.SuYuan; |
| | | import com.yssh.entity.SuYuan2d; |
| | | import com.yssh.entity.SuYuan3d; |
| | | import com.yssh.entity.SuYuanMonitorData; |
| | | import com.yssh.service.IAsyncService; |
| | | import com.yssh.service.ICommonService; |
| | | import com.yssh.service.ISuYuanService; |
| | |
| | | |
| | | @Resource |
| | | private FeedbackMapper feedbackMapper; |
| | | |
| | | @Resource |
| | | private QxshMapper qxshMapper; |
| | | |
| | | private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHH"); |
| | | |
| | |
| | | |
| | | return suYuanMapper.updateVocsName(table, id, vocsName); |
| | | } |
| | | |
| | | @Override |
| | | public List<Qxsh> queryQxsh(Date date) { |
| | | String time = dateFormat.format(date); |
| | | |
| | | return qxshMapper.selectByTime(time); |
| | | } |
| | | } |