Files
ThousandHands/core/plan/Plan.py
2024-11-12 20:30:19 +08:00

12 lines
233 B
Python

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