|
@@ -1,13 +1,13 @@
|
|
# -*- coding: utf-8 -*-
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
import feapder.utils.tools as tools
|
|
import feapder.utils.tools as tools
|
|
|
|
+from feapder import BaseListItem, BaseDetailItem
|
|
from feapder.utils.log import log
|
|
from feapder.utils.log import log
|
|
-from items.base_item import BaseItem
|
|
|
|
from untils.check_data import CheckData
|
|
from untils.check_data import CheckData
|
|
from untils.tools import int2long, substitute, text_search
|
|
from untils.tools import int2long, substitute, text_search
|
|
|
|
|
|
|
|
|
|
-class DataNjpcItem(BaseItem):
|
|
|
|
|
|
+class DataNjpcItem(BaseDetailItem):
|
|
"""拟建类"""
|
|
"""拟建类"""
|
|
def __init__(self):
|
|
def __init__(self):
|
|
super(DataNjpcItem, self).__init__()
|
|
super(DataNjpcItem, self).__init__()
|
|
@@ -134,7 +134,7 @@ class DataNjpcItem(BaseItem):
|
|
del self.projectinfo
|
|
del self.projectinfo
|
|
|
|
|
|
|
|
|
|
-class NjpcListItem(BaseItem):
|
|
|
|
|
|
+class NjpcListItem(BaseListItem):
|
|
|
|
|
|
def __init__(self):
|
|
def __init__(self):
|
|
super(NjpcListItem, self).__init__()
|
|
super(NjpcListItem, self).__init__()
|