using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 推送热处理炉号 /// public class PushHeatingNumberParam { /// /// 系统编码 /// public string sysCode { get; set; } /// /// 流转卡号 /// public string processCardNumber { get; set; } /// /// 热处理炉号 /// public string heatingNumber { get; set; } /// /// 时间戳 /// public string updateTime { get; set; } } }