v11.6.2025.0901 重构控制台日志为队列输出;增强Json序列化长整数;增强对象容器;改进支持机器学习
智能大石头
authored at
2025-09-01 08:13:53
X
using System;
namespace NewLife.Yun
{
/// <summary>驾车距离和时间</summary>
public class Driving
{
/// <summary>距离。单位米</summary>
public Int32 Distance { get; set; }
/// <summary>路线耗时。单位秒</summary>
public Int32 Duration { get; set; }
}
}
|