|
@@ -10,7 +10,7 @@ from untils.tools import (
|
|
|
|
|
|
|
|
|
class DataBakItem(SwordFishProjectItem):
|
|
|
- """标讯数据"""
|
|
|
+ """招标(标讯)类"""
|
|
|
def __init__(self):
|
|
|
super(DataBakItem, self).__init__()
|
|
|
|
|
@@ -81,7 +81,7 @@ class DataBakItem(SwordFishProjectItem):
|
|
|
|
|
|
|
|
|
class ExamineAndApproveItem(DataBakItem):
|
|
|
- """审批数据"""
|
|
|
+ """审批类"""
|
|
|
def __init__(self):
|
|
|
super(ExamineAndApproveItem, self).__init__()
|
|
|
|
|
@@ -92,13 +92,13 @@ class ExamineAndApproveItem(DataBakItem):
|
|
|
|
|
|
|
|
|
class PropertyRightItem(DataBakItem):
|
|
|
- """产权数据"""
|
|
|
+ """产权类"""
|
|
|
def __init__(self):
|
|
|
super(PropertyRightItem, self).__init__()
|
|
|
|
|
|
self.table_name = "data_bak"
|
|
|
|
|
|
- self.T = "bidding_other"
|
|
|
+ self.T = "bidding"
|
|
|
self.infoformat = 3
|
|
|
|
|
|
|