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