blob: fdd4eb3511a04af9c9686850eadb0ef86b0c9372 [file] [log] [blame]
# -*- coding: utf-8 -*-
from django.db import models
class PSensorSetting(models.Model):
uuid = models.CharField(max_length=255)
old_offset = models.IntegerField()
old_near_threshold = models.IntegerField()
old_far_threshold = models.IntegerField()
new_offset = models.IntegerField()
new_near_threshold = models.IntegerField()
new_far_threshold = models.IntegerField()
timestamp = models.DateTimeField()