123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Pms.UserEvent.Model
- {
- public class ResponsePLCCommand
- {
- public string ID { get; set; }
- public string FunName { get; set; }
- public string DBAddress { get; set; }
- public int IsMeet { get; set; }
- public int type { get; set; }
- }
- }
|