| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity
- {
- public class TLSettingInfo
- {
- public string address { get; set; }
- public long addressId { get; set; }
- public string alarmIp { get; set; }
- public string alarmPort { get; set; }
- public long id { get; set; }
- public string installTime { get; set; }
- public string kafkaTopic { get; set; }
- public string mqttQueue { get; set; }
- /// <summary>
- /// 在线状态 0离线 1在线 2解绑 3待初始化
- /// </summary>
- public int online { get; set; }
- public string protocolAddress { get; set; }
- public string remark { get; set; }
- public string socketIp { get; set; }
- public string socketPort { get; set; }
- public string softwareVersion { get; set; }
- public int state { get; set; }
- public string tlName { get; set; }
- public string tlSn { get; set; }
- public string collectName { get; set; }
- public string collectSn { get; set; }
- }
- }
|