ApiParam.cs 570 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.Serialization;
  4. using System.Text;
  5. using WCS.Data.Models;
  6. namespace WCS.WMSWorkflow
  7. {
  8. public class ApiParam
  9. {
  10. public class PutDevInfoParam
  11. {
  12. //设备编号
  13. public string STA_EQUIPMENTNO { get; set; }
  14. //故障代码
  15. public string STA_ALARMS { get; set; }
  16. //故障信息
  17. public string STA_ALARMSMSG { get; set; }
  18. //PLC信息
  19. public string STA_DATA { get; set; }
  20. }
  21. }
  22. }