namespace SHJX.Service.Model.CRUDModules { /// /// 坐标轴 /// public record Axis { /// /// X轴坐标 /// public double LocationX { get; set; } /// /// Y轴坐标 /// public double LocationY { get; set; } /// /// Z轴坐标 /// public double LocationZ { get; set; } /// /// Z轴坐标 /// public double LocationZF { get; set; } } }