DevincePh.cs 450 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.share
  5. {
  6. public class DevincePh
  7. {
  8. public string deviceCode { get; set; }
  9. public bool pH_STATUS { get; set; }
  10. }
  11. public class DevincePh1: DevincePh
  12. {
  13. public int TaskCode { get; set; }
  14. }
  15. public class LayerCount
  16. {
  17. public int Layer { get; set; }
  18. public int Count { get; set; }
  19. }
  20. }