12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.response.share
- {
- public class DevincePh
- {
- public string deviceCode { get; set; }
- public bool pH_STATUS { get; set; }
- }
- public class DevincePh1: DevincePh
- {
- public int TaskCode { get; set; }
- }
- public class LayerCount
- {
- public int Layer { get; set; }
- public int Count { get; set; }
- }
- }
|