29 lines
649 B
C#
29 lines
649 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JY.Model
|
|
{
|
|
public class PLCConfigBase
|
|
{
|
|
/// <summary>
|
|
/// 自增Id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// PLC地址/PLC变更说明
|
|
/// </summary>
|
|
public string PLCAddress { get; set; }
|
|
/// <summary>
|
|
/// PLC地址说明
|
|
/// </summary>
|
|
public string PLCRemark { get; set; }
|
|
/// <summary>
|
|
/// 地址排序
|
|
/// </summary>
|
|
public int OrderNum { get; set; }
|
|
}
|
|
}
|