using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JY.Model { public class PLCConfigBase { /// /// 自增Id /// public int Id { get; set; } /// /// PLC地址/PLC变更说明 /// public string PLCAddress { get; set; } /// /// PLC地址说明 /// public string PLCRemark { get; set; } /// /// 地址排序 /// public int OrderNum { get; set; } } }