12345678910111213141516171819202122232425262728293031323334353637 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Linq;
- namespace WCS.Data.Models
- {
- public class WCS_CacheInfo
- {
- [SugarColumn(IsPrimaryKey = true)]
- public string Cache_ConvNo { get; set; }
- public string Cache_AreaName { get; set; }
- public int Cache_Count { get; set; }
- public string Cache_PlcName { get; set; }
- /// <summary>
- /// 交通管制设备清单
- /// </summary>
- public string Cache_TrafficControlEqu { get; set; }
- [SugarColumn(IsIgnore = true)]
- public List<string> Cache_TrafficControlEquSet
- {
- get
- {
- if (string.IsNullOrWhiteSpace(Cache_TrafficControlEqu))
- {
- return new List<string>();
- }
- else
- {
- return Cache_TrafficControlEqu.Split(';').ToList();
- }
- }
- }
- }
- }
|