12 lines
233 B
Python
12 lines
233 B
Python
class Plan:
|
|
__priority_factor: float # 优先级因子
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def getPriorityFactor(self) -> float:
|
|
'''
|
|
获取优先级因子
|
|
'''
|
|
return self.__priority_factor
|