wanshenmean
8 天以前 fd18eaba5e1c086a588509371f91310e7aafff9c
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;
    }
}