feat / AEB-20 create csv parser

This commit is contained in:
Timofey Syrokvashko
2025-09-04 18:37:23 +03:00
parent 6c2ea027a4
commit dabb871cbb
10 changed files with 289 additions and 2 deletions

View File

@@ -85,6 +85,8 @@ class Sensor(models.Model):
name = models.CharField(max_length=50, blank=True, null=True) # GA-1, HLE-1 и т.п.
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
math_formula = models.CharField(null=True, blank=True, max_length=255)
class Meta:
verbose_name = "Датчик"
verbose_name_plural = "Датчики"