From 54f80c3c4263d6181a870ab844d601a676223e04 Mon Sep 17 00:00:00 2001
From: 刘磊 <1161824510@qq.com>
Date: 星期三, 18 十二月 2024 21:14:32 +0800
Subject: [PATCH] 提交忽略项
---
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs
new file mode 100644
index 0000000..f09779a
--- /dev/null
+++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task_HtyController.cs
@@ -0,0 +1,26 @@
+锘縰sing WIDESEA_DTO;
+using static WIDESEA_DTO.RequestTaskDto;
+
+namespace WIDESEA_WMSServer.Controllers;
+
+/// <summary>
+/// 浠诲姟鎿嶄綔鎺ュ彛
+/// </summary>
+[Route("api/[controller]")]
+[ApiController]
+public class Task_HtyController : ApiBaseController<IDt_Task_HtyService, Dt_Task_Hty>
+{
+ private readonly IHttpContextAccessor _httpContextAccessor;
+ private readonly IDt_Task_HtyService _task_HtyService;
+ private readonly ILocationInfoService _locationService;
+
+ public Task_HtyController(IDt_Task_HtyService task_HtyService,
+ IHttpContextAccessor httpContextAccessor,
+ ILocationInfoService locationService) : base(task_HtyService)
+ {
+ _httpContextAccessor = httpContextAccessor;
+ _task_HtyService = task_HtyService;
+ _locationService = locationService;
+ }
+
+}
\ No newline at end of file
--
Gitblit v1.9.3