fix: em回退到0021

This commit is contained in:
zty 2024-12-04 09:58:53 +08:00
parent ca08fb5c20
commit cbaf79084c
2 changed files with 1 additions and 19 deletions

View File

@ -1,18 +0,0 @@
# Generated by Django 3.2.12 on 2024-12-03 09:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('em', '0021_auto_20241203_1531'),
]
operations = [
migrations.AlterField(
model_name='equipment',
name='check_days_number',
field=models.PositiveSmallIntegerField(default=7, verbose_name='临期检验预警(天)'),
),
]

View File

@ -110,7 +110,7 @@ class Equipment(CommonBModel):
check_date = models.DateField("最近校准检查日期", blank=True, null=True)
next_check_date = models.DateField("预计下次校准检查日期", blank=True, null=True)
state_measure = models.PositiveIntegerField("计量设备状态", choices=measure_state_choices, default=EQ_WAIT)
check_days_number = models.PositiveSmallIntegerField("临期检验预警(天)", default=7)
check_days_number = models.PositiveSmallIntegerField("临期检验预警(天)", null=True, blank=True)
power_kw = models.FloatField("功率", null=True, blank=True)
coordinates = models.JSONField("坐标", default=dict, blank=True)