From c61507c7dd1f0f0289b72dec2bb325ce6f6261e4 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Wed, 10 Jan 2024 15:35:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0Drain=20cate=20help?= =?UTF-8?q?=5Ftext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/enp/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/enp/models.py b/apps/enp/models.py index dea8c82a..3f25a095 100644 --- a/apps/enp/models.py +++ b/apps/enp/models.py @@ -30,7 +30,7 @@ class Drain(CommonBModel): level = models.PositiveSmallIntegerField( '排口等级', default=20, choices=DR_LEVLE_CHOICES, help_text=str(DR_LEVLE_CHOICES)) cate = models.CharField('分类', max_length=10, - choices=DR_CATE_CHOICES, null=True, blank=True) + choices=DR_CATE_CHOICES, null=True, blank=True, help_text=str(DR_CATE_CHOICES)) height = models.PositiveSmallIntegerField('排气筒高度', default=0) treatment_capacity = models.CharField('处理量', max_length=20, default='') pm_limit = models.FloatField('PM超低排放限值', default=10, help_text='单位:mg/m³')