Example #1
0
 def __init__(self, date, mid, cnt):
     DailyHashKpiModel.__init__(self, date)
     self.mid = mid
     self.cnt = cnt
Example #2
0
 def __init__(self, date, rank, num):
     DailyHashKpiModel.__init__(self, date)
     self.rank = rank
     self.num = num
Example #3
0
 def __init__(self, date, scoutid, score=None):
     DailyHashKpiModel.__init__(self, date)
     self.scoutid = scoutid
     self.score = score
Example #4
0
 def __init__(self, date, uid, rank, grouprank, point):
     DailyHashKpiModel.__init__(self, date)
     self.uid = uid
     self.rank = rank
     self.grouprank = grouprank
     self.point = point
Example #5
0
 def __init__(self, date, rare):
     DailyHashKpiModel.__init__(self, date)
     self.rare = rare
Example #6
0
 def __init__(self, date, uid, rank):
     DailyHashKpiModel.__init__(self, date)
     self.uid = uid
     self.rank = rank
Example #7
0
 def __init__(self, date, target, cnt=None):
     DailyHashKpiModel.__init__(self, date)
     self.target = target
     self.cnt = cnt
Example #8
0
 def __init__(self, date, rank, score=None):
     DailyHashKpiModel.__init__(self, date)
     self.rank = rank
     self.score = score