xiazhengtongxue
昨天 af4404160a9e8d14c09f1e6acab2ba00cb7fc91b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace WIDESEAWCS_Common
{
    public class RobotConst
    {
        /// <summary>
        /// 任务总数上限
        /// </summary>
        /// <remarks>
        /// 当机器人处理的货物数量达到此上限时,不再下发新任务。
        /// 防止机器人过度劳累或系统过载。
        /// </remarks>
        public const int MaxTaskTotalNum = 48;
    }
}