1234567891011 |
- # -*- coding: utf-8 -*-
- from apps.base import ExcelImporter
- class BuildingImporter(ExcelImporter):
- fields = {
- u'区域': (True, ExcelImporter.formatUnicode),
- u'楼宇': (True, ExcelImporter.formatUnicode),
- u'楼层': (True, ExcelImporter.formatUnicode),
- u'地点': (True, ExcelImporter.formatUnicode),
- }
|