resources.py 346 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. from apps.base import ExcelImporter
  3. class BuildingImporter(ExcelImporter):
  4. fields = {
  5. u'区域': (True, ExcelImporter.formatUnicode),
  6. u'楼宇': (True, ExcelImporter.formatUnicode),
  7. u'楼层': (True, ExcelImporter.formatUnicode),
  8. u'地点': (True, ExcelImporter.formatUnicode),
  9. }