1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using WCS.Entity.Protocol.DataStructure;
- namespace WCS.Entity.Protocol
- {
- public interface ILog : IProtocol
- {
- string Log { get; set; }
- }
- public class DataILog :DeviceData, ILog
- {
- public string Log { get; set; }
- }
- }
|