| 1234567891011121314151617181920212223 | using System;using System.Collections.Generic;using System.Runtime.Serialization;using System.Text;using WCS.Data.Models;namespace WCS.WMSWorkflow{    public class ApiParam    {        public class PutDevInfoParam        {            //设备编号            public string STA_EQUIPMENTNO { get; set; }            //故障代码            public string STA_ALARMS { get; set; }            //故障信息            public string STA_ALARMSMSG { get; set; }            //PLC信息            public string STA_DATA { get; set; }        }    }}
 |