qinchulong
2025-03-01 71eaf9114fc39d137d76b303edeb1ff43e26cf6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_Core.Caches;
using WIDESEAWCS_ISystemServices;
using WIDESEAWCS_ITaskInfoService;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_Server.Controllers.System
{
    [Route("api/Batch")]
    [ApiController]
    public class BatchController : ApiBaseController<Idt_BatchinfoService, dt_batchInfo>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public BatchController(Idt_BatchinfoService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
    }
}