feat: 增加Drain cate help_text

This commit is contained in:
caoqianming 2024-01-10 15:35:23 +08:00
parent 4a7a8f98ae
commit c61507c7dd
1 changed files with 1 additions and 1 deletions

View File

@ -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³')