| | |
| | | using WIDESEA_Common.StockEnum; |
| | | using WIDESEA_Common.TaskEnum; |
| | | using WIDESEA_Common.WareHouseEnum; |
| | | using Microsoft.Extensions.Options; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | |
| | | private readonly IMesLogService _mesLogService; |
| | | private readonly IMesUploadHelper _mesUploadHelper; |
| | | private readonly ISqlSugarClient _sqlSugarClient; |
| | | private readonly IOptionsMonitor<OutboundTimeConfigOptions> _outboundTimeOptions; |
| | | |
| | | public IRepository<Dt_Task> Repository => BaseDal; |
| | | |
| | |
| | | IMESDeviceConfigService mesDeviceConfigService, |
| | | IMesLogService mesLogService, |
| | | IMesUploadHelper mesUploadHelper, |
| | | ISqlSugarClient sqlSugarClient) : base(BaseDal) |
| | | ISqlSugarClient sqlSugarClient, |
| | | IOptionsMonitor<OutboundTimeConfigOptions> outboundTimeOptions) : base(BaseDal) |
| | | { |
| | | _mapper = mapper; |
| | | _stockInfoService = stockInfoService; |
| | |
| | | _mesLogService = mesLogService; |
| | | _mesUploadHelper = mesUploadHelper; |
| | | _sqlSugarClient = sqlSugarClient; |
| | | _outboundTimeOptions = outboundTimeOptions; |
| | | } |
| | | |
| | | /// <summary> |