| 123456789101112131415161718192021222324 | namespace WCS.WebApi.WMS.Request{    /// <summary>    /// 传递设备信息请求实体    /// </summary>    public class I_WCS_PutDevInfoRequest    {        //设备编号        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; }    }    public class I_WCS_PutDevInfoRequestDto : I_WCS_PutDevInfoRequest    {    }}
 |