@@ -19,7 +19,7 @@ class IsolationPointInfo(BaseModelMixin): |
||
| 19 | 19 |
verbose_name_plural = _('隔离点信息')
|
| 20 | 20 |
|
| 21 | 21 |
def __unicode__(self): |
| 22 |
- return '%d' % self.pk |
|
| 22 |
+ return self.pk |
|
| 23 | 23 |
|
| 24 | 24 |
@property |
| 25 | 25 |
def data(self): |
@@ -76,7 +76,7 @@ class ThermometerEquipmentInfo(BaseModelMixin): |
||
| 76 | 76 |
verbose_name_plural = _('测温设备信息')
|
| 77 | 77 |
|
| 78 | 78 |
def __unicode__(self): |
| 79 |
- return '%d' % self.pk |
|
| 79 |
+ return self.pk |
|
| 80 | 80 |
|
| 81 | 81 |
@property |
| 82 | 82 |
def data(self): |
@@ -119,7 +119,7 @@ class ThermometerMeasureInfo(BaseModelMixin): |
||
| 119 | 119 |
) |
| 120 | 120 |
|
| 121 | 121 |
def __unicode__(self): |
| 122 |
- return '%d' % self.pk |
|
| 122 |
+ return self.pk |
|
| 123 | 123 |
|
| 124 | 124 |
@property |
| 125 | 125 |
def data(self): |
@@ -145,7 +145,7 @@ class ThermometerMeasureLogInfo(BaseModelMixin): |
||
| 145 | 145 |
verbose_name_plural = _('测温记录信息')
|
| 146 | 146 |
|
| 147 | 147 |
def __unicode__(self): |
| 148 |
- return '%d' % self.pk |
|
| 148 |
+ return self.pk |
|
| 149 | 149 |
|
| 150 | 150 |
@property |
| 151 | 151 |
def data(self): |