using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HEIDENHAIN.body { public class ResponseToolData { /// /// 刀具号 /// public string number { get; set; } /// /// 刀具名称 /// public string name { get; set; } /// /// 刀具寿命预警 /// public string warnLife { get; set; } /// /// 刀具寿命目标值 /// public string targetLife { get; set; } /// /// 工件数 /// public string workPiece { get; set; } /// /// 工件数预警值 /// public string workPieceWarn { get; set; } /// /// 工件数目标值 /// public string workPieceTarget { get; set; } /// /// 磨损量 /// public string wear { get; set; } /// /// 磨损量预警值 /// public string wearWarn { get; set; } /// /// 磨损量目标值 /// public string wearTarget { get; set; } /// /// 姊妹刀号 /// public string sisterNo { get; set; } /// /// 刀沿号 /// public string toolEdgeNo { get; set; } /// /// 刀具位置 /// public string toolPosition { get; set; } /// /// 刀具半径 /// public string toolRadius { get; set; } } }