From c54e0666bdd34fbe133fe521bf9d46dd6c0fe53e Mon Sep 17 00:00:00 2001 From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com> Date: 星期四, 12 六月 2025 10:33:28 +0800 Subject: [PATCH] 代码提交 --- 项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/DeviceBase/DataLengthAttribute.cs | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemRepository/IAgvStationRepository.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/DeviceBase/DataLengthAttribute.cs" similarity index 62% copy from "\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemRepository/IAgvStationRepository.cs" copy to "\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/DeviceBase/DataLengthAttribute.cs" index 068a037..8be1e83 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_ISystemRepository/IAgvStationRepository.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/DeviceBase/DataLengthAttribute.cs" @@ -1,6 +1,6 @@ 锘�#region << 鐗� 鏈� 娉� 閲� >> /*---------------------------------------------------------------- - * 鍛藉悕绌洪棿锛歐IDESEAWCS_ITaskInfoRepository + * 鍛藉悕绌洪棿锛歐IDESEAWCS_QuartzJob.DeviceBase * 鍒涘缓鑰咃細鑳$搴� * 鍒涘缓鏃堕棿锛�2024/8/2 16:13:36 * 鐗堟湰锛歏1.0.0 @@ -20,14 +20,17 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using WIDESEAWCS_Core.BaseRepository; -using WIDESEAWCS_Model.Models; -using WIDESEAWCS_Model.Models.System; -namespace WIDESEAWCS_ISystemRepository +namespace WIDESEAWCS_QuartzJob.DeviceBase { - public interface IAgvStationRepository : IRepository<AGVStation> + [AttributeUsage(AttributeTargets.Property)] + public class DataLengthAttribute : Attribute { + public DataLengthAttribute(ushort dataLength) + { + DataLength = dataLength; + } + public ushort DataLength { get; set; } } } -- Gitblit v1.9.3