You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
911 B
C#
32 lines
911 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.Module.Core.Extensions;
|
|
using DS.Module.Core.Helpers;
|
|
using DS.Module.DjyServiceStatus;
|
|
using DS.Module.SqlSugar;
|
|
using DS.Module.UserModule;
|
|
using DS.WMS.Core.TaskPlat.Dtos;
|
|
using DS.WMS.Core.TaskPlat.Entity;
|
|
using DS.WMS.Core.TaskPlat.Interface;
|
|
using Mapster;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Logging;
|
|
using Newtonsoft.Json;
|
|
using SqlSugar;
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Method
|
|
{
|
|
public class TaskAllocationService : ITaskAllocation
|
|
{
|
|
public TaskAllocationService(IUser user,
|
|
ILogger<TaskAllocationService> logger,
|
|
ISaasDbService saasDbService,
|
|
IServiceProvider serviceProvider,
|
|
IWebHostEnvironment environment)
|
|
{ }
|
|
|
|
}
|
|
}
|