ningshuxia
2023-02-06 1fc0b4ed96d4c4b1ff7142926239998de32b2ada
Model/IStation.Model.Monitor/signal_type/SignalType.cs
@@ -2,7 +2,7 @@
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.Runtime.Serialization;
namespace IStation.Model
{
@@ -10,9 +10,9 @@
    /// 信号类型
    /// </summary>   
    public partial class SignalType : System.ICloneable
    {
    {
        public SignalType() { }
        public SignalType(SignalType rhs)
        {
            this.Id = rhs.Id;
@@ -28,7 +28,7 @@
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        public void Reset(SignalType rhs)
        {
            this.Id = rhs.Id;
@@ -48,7 +48,7 @@
        /// <summary>
        /// 标识
        /// </summary>   
        public long Id { get; set; }
        public long Id { get; set; }
        /// <summary>
        /// 组标识
@@ -68,7 +68,7 @@
        /// <summary>
        /// 单位类型
        /// </summary>   
        public eUnitType UnitType { get; set; }
        public IStation.Unit.eUnitType UnitType { get; set; }
        /// <summary>
        /// 单位值
@@ -83,7 +83,7 @@
        /// <summary>
        /// 值类型
        /// </summary>   
        public eValueType ValueType { get; set; }
        public Monitor.eValueType ValueType { get; set; }
        /// <summary>
        /// 值设置
@@ -104,7 +104,7 @@
        /// 说明
        /// </summary>   
        public string Description { get; set; }
        public SignalType Clone()
        {
            return (SignalType)this.MemberwiseClone();