From 5af11cc200dd5ebe474b9c0475883b0e6d1e3759 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期三, 11 三月 2026 10:00:49 +0800
Subject: [PATCH] 重构整个项目:改进代码质量和架构
---
Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/PalletCodeInfoService.cs | 26 ++++++++++++--------------
1 files changed, 12 insertions(+), 14 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/PalletCodeInfoService.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/PalletCodeInfoService.cs
index 3786220..d7ea785 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/PalletCodeInfoService.cs
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_BasicService/PalletCodeInfoService.cs
@@ -1,28 +1,26 @@
-锘縰sing SqlSugar;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using WIDESEA_Common.CommonEnum;
-using WIDESEA_Common.WareHouseEnum;
-using WIDESEA_Core;
-using WIDESEA_Core.BaseRepository;
+锘縰sing WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
-using WIDESEA_Core.Helper;
using WIDESEA_IBasicService;
using WIDESEA_Model.Models;
namespace WIDESEA_BasicService
{
+ /// <summary>
+ /// 鎵樼洏缂栫爜淇℃伅鏈嶅姟瀹炵幇绫�
+ /// </summary>
public class PalletCodeInfoService : ServiceBase<Dt_PalletCodeInfo, IRepository<Dt_PalletCodeInfo>>, IPalletCodeInfoService
{
-
- public PalletCodeInfoService(IRepository<Dt_PalletCodeInfo> BaseDal) : base(BaseDal)
+ /// <summary>
+ /// 鏋勯�犲嚱鏁�
+ /// </summary>
+ /// <param name="baseDal">鍩虹鏁版嵁璁块棶瀵硅薄</param>
+ public PalletCodeInfoService(IRepository<Dt_PalletCodeInfo> baseDal) : base(baseDal)
{
-
}
+ /// <summary>
+ /// 鑾峰彇鎵樼洏缂栫爜淇℃伅浠撳偍鎺ュ彛
+ /// </summary>
public IRepository<Dt_PalletCodeInfo> Repository => BaseDal;
}
}
--
Gitblit v1.9.3