1
z8018
2025-03-12 17e4c7e3e7b3ef60d9da6de3b2a39a14a53c38a0
WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/DeviceBase/DataLengthAttribute.cs
@@ -23,14 +23,23 @@
namespace WIDESEAWCS_QuartzJob.DeviceBase
{
    /// <summary>
    /// 字符串长度特性
    /// </summary>
    [AttributeUsage(AttributeTargets.Property)]
    public class DataLengthAttribute : Attribute
    {
        public DataLengthAttribute(ushort dataLength)
        /// <summary>
        /// 构造函数
        /// </summary>
        public DataLengthAttribute(ushort dataLength)
        {
            DataLength = dataLength;
        }
        /// <summary>
        /// 字符串长度
        /// </summary>
        public ushort DataLength { get; set; }
    }
}