24 lines
		
	
	
		
			652 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			652 B
		
	
	
	
		
			Python
		
	
	
	
| # Generated by Django 3.2.12 on 2023-08-25 08:49
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('enm', '0020_auto_20230822_1758'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='mpointstat',
 | |
|             name='elec_consume_unit',
 | |
|             field=models.FloatField(default=0, help_text='kw·h/t', verbose_name='单位产品电耗'),
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='mpointstat',
 | |
|             name='total_production',
 | |
|             field=models.FloatField(default=0, help_text='t', verbose_name='总产量'),
 | |
|         ),
 | |
|     ]
 |