35 changed files with 6235 additions and 295 deletions
File diff suppressed because it is too large
@ -0,0 +1,222 @@ |
|||||
|
using System; |
||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
#nullable disable |
||||
|
|
||||
|
namespace TaskManager.EntityFramework.Migrations |
||||
|
{ |
||||
|
/// <inheritdoc />
|
||||
|
public partial class z202505300001 : Migration |
||||
|
{ |
||||
|
/// <inheritdoc />
|
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "Client", |
||||
|
table: "TaskConifgure", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.CreateTable( |
||||
|
name: "SUPPLIER_EMPLOYEE_DT", |
||||
|
columns: table => new |
||||
|
{ |
||||
|
UId = table.Column<long>(type: "bigint", nullable: false) |
||||
|
.Annotation("SqlServer:Identity", "1, 1"), |
||||
|
SupplierCode = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
SupplierName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
PlantId = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
PlantName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
WorkshopId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
WorkshopName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ProductionLineId = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ProductionLineName = table.Column<string>(type: "VARCHAR(100)", maxLength: 100, nullable: false), |
||||
|
StationId = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
StationName = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
OperatorId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
OperatorName = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
HaveQuantity = table.Column<string>(type: "CHAR(1)", maxLength: 1, nullable: false), |
||||
|
DataUpdateTime = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
PositionId = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
PositionName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
QualificationLevel = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
CheckInTime = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
CheckOutTime = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
WriteState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
ReadState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
Remark = table.Column<string>(type: "NVarchar(500)", maxLength: 500, nullable: true) |
||||
|
}, |
||||
|
constraints: table => |
||||
|
{ |
||||
|
table.PrimaryKey("PK_SUPPLIER_EMPLOYEE_DT", x => x.UId); |
||||
|
}); |
||||
|
|
||||
|
migrationBuilder.CreateTable( |
||||
|
name: "SUPPLIER_INFO_DT", |
||||
|
columns: table => new |
||||
|
{ |
||||
|
UId = table.Column<long>(type: "bigint", nullable: false) |
||||
|
.Annotation("SqlServer:Identity", "1, 1"), |
||||
|
SupplierCode = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
SupplierName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
PlantId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
PlantName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
WorkshopId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
WorkshopName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ProductionLineId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
ProductionLineName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
StationId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
StationName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
KeyStation = table.Column<string>(type: "CHAR(1)", maxLength: 1, nullable: false), |
||||
|
DataUpdateTime = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
ProductionLineOrder = table.Column<decimal>(type: "DECIMAL(16,0)", precision: 16, scale: 0, nullable: false), |
||||
|
StationOrder = table.Column<decimal>(type: "DECIMAL(16,0)", precision: 16, scale: 0, nullable: false), |
||||
|
VendorProductNo = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
VendorProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
CheryProductNo = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
CheryProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
WriteState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
ReadState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
Remark = table.Column<string>(type: "NVarchar(500)", maxLength: 500, nullable: true) |
||||
|
}, |
||||
|
constraints: table => |
||||
|
{ |
||||
|
table.PrimaryKey("PK_SUPPLIER_INFO_DT", x => x.UId); |
||||
|
}); |
||||
|
|
||||
|
migrationBuilder.CreateTable( |
||||
|
name: "SUPPLIER_PRO_ATTACHMENT_DATA_DT", |
||||
|
columns: table => new |
||||
|
{ |
||||
|
UId = table.Column<long>(type: "bigint", nullable: false) |
||||
|
.Annotation("SqlServer:Identity", "1, 1"), |
||||
|
SupplierCode = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
SupplierName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
Type = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
FileName = table.Column<string>(type: "VARCHAR(300)", maxLength: 300, nullable: false), |
||||
|
FileUrl = table.Column<string>(type: "VARCHAR(1000)", maxLength: 1000, nullable: false), |
||||
|
DateTime = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
ProductionLineName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ProductionLineId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
StationName = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
StationId = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
DeviceName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
DeviceId = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
||||
|
VendorProductNo = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
VendorProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
CheryProductNo = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
CheryProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
VendorProductSn = table.Column<string>(type: "VARCHAR(100)", maxLength: 100, nullable: true), |
||||
|
WriteState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
ReadState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
Remark = table.Column<string>(type: "NVarchar(500)", maxLength: 500, nullable: true) |
||||
|
}, |
||||
|
constraints: table => |
||||
|
{ |
||||
|
table.PrimaryKey("PK_SUPPLIER_PRO_ATTACHMENT_DATA_DT", x => x.UId); |
||||
|
}); |
||||
|
|
||||
|
migrationBuilder.CreateTable( |
||||
|
name: "SUPPLIER_PRO_PROCESS_EQUIPMENT_DT", |
||||
|
columns: table => new |
||||
|
{ |
||||
|
UId = table.Column<long>(type: "bigint", nullable: false) |
||||
|
.Annotation("SqlServer:Identity", "1, 1"), |
||||
|
SupplierCode = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
SupplierName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
CheryProductNo = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
CheryProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
VendorProductNo = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
VendorProductName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
DeviceType = table.Column<decimal>(type: "DECIMAL(1,0)", precision: 1, scale: 0, nullable: false), |
||||
|
DeviceCode = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
DeviceName = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
Manufacturer = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ModelNumber = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
SerialNumber = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
ProductionDate = table.Column<string>(type: "CHAR(16)", maxLength: 16, nullable: false), |
||||
|
Material = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
CurrentLocation = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
DeviceStatus = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
CavityCount = table.Column<decimal>(type: "DECIMAL(16,0)", precision: 16, scale: 0, nullable: false), |
||||
|
MoldSize = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
DesignLifeUnits = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
DesignLifeValue = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
CurrentUsageCount = table.Column<string>(type: "VARCHAR(16)", maxLength: 16, nullable: false), |
||||
|
OverhaulCount = table.Column<decimal>(type: "DECIMAL(16,0)", precision: 16, scale: 0, nullable: false), |
||||
|
CoolingChannelLayout = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
DetectionAccuracy = table.Column<string>(type: "VARCHAR(64)", maxLength: 64, nullable: false), |
||||
|
CalibrationDate = table.Column<string>(type: "CHAR(19)", maxLength: 19, nullable: false), |
||||
|
CalibrationDueDays = table.Column<string>(type: "CHAR(12)", maxLength: 12, nullable: false), |
||||
|
ToleranceRange = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
WearThreshold = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
DetectionRange = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
UnitType = table.Column<string>(type: "VARCHAR(32)", maxLength: 32, nullable: false), |
||||
|
WriteState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
ReadState = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
||||
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
Remark = table.Column<string>(type: "NVarchar(500)", maxLength: 500, nullable: true) |
||||
|
}, |
||||
|
constraints: table => |
||||
|
{ |
||||
|
table.PrimaryKey("PK_SUPPLIER_PRO_PROCESS_EQUIPMENT_DT", x => x.UId); |
||||
|
}); |
||||
|
|
||||
|
migrationBuilder.CreateTable( |
||||
|
name: "TaskSub", |
||||
|
columns: table => new |
||||
|
{ |
||||
|
UId = table.Column<long>(type: "bigint", nullable: false) |
||||
|
.Annotation("SqlServer:Identity", "1, 1"), |
||||
|
TableName = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
TaskName = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
DataCount = table.Column<int>(type: "int", nullable: false), |
||||
|
Subscriber = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
FailedCount = table.Column<int>(type: "int", nullable: false), |
||||
|
FailedInfo = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
Domain = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
Site = table.Column<string>(type: "nvarchar(max)", nullable: false), |
||||
|
CreateUser = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
CreateTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
Remark = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
UpdateUser = table.Column<string>(type: "nvarchar(max)", nullable: true), |
||||
|
UpdateTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
||||
|
SyncedPageCount = table.Column<int>(type: "int", nullable: false), |
||||
|
WriteState = table.Column<bool>(type: "bit", nullable: false), |
||||
|
ReadState = table.Column<bool>(type: "bit", nullable: false), |
||||
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
||||
|
TaskId = table.Column<Guid>(type: "uniqueidentifier", nullable: false) |
||||
|
}, |
||||
|
constraints: table => |
||||
|
{ |
||||
|
table.PrimaryKey("PK_TaskSub", x => x.UId); |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
/// <inheritdoc />
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.DropTable( |
||||
|
name: "SUPPLIER_EMPLOYEE_DT"); |
||||
|
|
||||
|
migrationBuilder.DropTable( |
||||
|
name: "SUPPLIER_INFO_DT"); |
||||
|
|
||||
|
migrationBuilder.DropTable( |
||||
|
name: "SUPPLIER_PRO_ATTACHMENT_DATA_DT"); |
||||
|
|
||||
|
migrationBuilder.DropTable( |
||||
|
name: "SUPPLIER_PRO_PROCESS_EQUIPMENT_DT"); |
||||
|
|
||||
|
migrationBuilder.DropTable( |
||||
|
name: "TaskSub"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "Client", |
||||
|
table: "TaskConifgure"); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//看板配送单
|
||||
|
public class CherySupplierDelStateService : CheryRecurringJobOutPageController<SUPPLIER_DEL_STATE, SUPPLIER_DEL_STATE_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierDelStateService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_DEL_STATE> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//日物料需求计划
|
||||
|
public class CherySupplierMrpDataService : CheryRecurringJobOutPageController<SUPPLIER_MRP_DATE, SUPPLIER_MRP_DATE_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierMrpDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_DATE> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
public class CherySupplierMrpMonthService : CheryRecurringJobOutPageController<SUPPLIER_MRP_MONTH, SUPPLIER_MRP_MONTH_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierMrpMonthService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_MONTH> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//日MRP预警推移
|
||||
|
public class CherySupplierMrpWarningService : CheryRecurringJobOutPageController<SUPPLIER_MRP_WARNING, SUPPLIER_MRP_WARNING_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierMrpWarningService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_WARNING> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
public class CherySupplierPoService : CheryRecurringJobOutPageController<SUPPLIER_PO, SUPPLIER_PO_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierPoService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PO> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//过焊装未过总装
|
||||
|
public class CherySupplierPorHSCHEDULService : CheryRecurringJobOutPageController<SUPPLIER_PRO_HSCHEDUL, SUPPLIER_PRO_HSCHEDUL_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierPorHSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_HSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
public class CherySupplierProCSCHEDULService : CheryRecurringJobOutPageController<SUPPLIER_PRO_CSCHEDUL, SUPPLIER_PRO_CSCHEDUL_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierProCSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_CSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,6 @@ |
|||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
public class CherySupplierProStationFirstPassYieldService |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//过涂装未过总装
|
||||
|
public class CherySupplierProTSCHEDULService : CheryRecurringJobOutPageController<SUPPLIER_PRO_TSCHEDUL, SUPPLIER_PRO_TSCHEDUL_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierProTSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_TSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
//退货单
|
||||
|
public class CherySupplierReturnService : CheryRecurringJobOutPageController<SUPPLIER_RETURN, SUPPLIER_RETURN_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierReturnService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_RETURN> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 计划协议
|
||||
|
/// </summary>
|
||||
|
public class CherySupplierSaWeekService : CheryRecurringJobOutPageController<SUPPLIER_SA_WEEK, SUPPLIER_SA_WEEK_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierSaWeekService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_SA_WEEK> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
using TaskManager.Contracts.Dtos; |
||||
|
using TaskManager.Controllers; |
||||
|
using TaskManager.Entity; |
||||
|
using TaskManager.Entity.Entitys; |
||||
|
using TaskManager.EntityFramework; |
||||
|
|
||||
|
namespace TaskManager.Controllers |
||||
|
{ |
||||
|
public class CherySupplierSinvDataService : CheryRecurringJobOutPageController<SUPPLIER_SINV_DATA, SUPPLIER_SINV_DATA_DETAIL_DTO> |
||||
|
{ |
||||
|
public CherySupplierSinvDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_SINV_DATA> repository) : base(httpClient, jobDbContext, log, repository) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
@ -1,16 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//看板配送单
|
|
||||
public class SupplierDelStateService : RecurringJobOutPageController<SUPPLIER_DEL_STATE, SUPPLIER_DEL_STATE_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierDelStateService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_DEL_STATE> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,16 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//日物料需求计划
|
|
||||
public class SupplierMrpDataService : RecurringJobOutPageController<SUPPLIER_MRP_DATE, SUPPLIER_MRP_DATE_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierMrpDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_DATE> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,16 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//日MRP状态监控
|
|
||||
public class SupplierMrpService : RecurringJobOutPageController<SUPPLIER_MRP_STATE, SUPPLIER_MRP_STATE_DETIAL_DTO> |
|
||||
{ |
|
||||
public SupplierMrpService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_STATE> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,16 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//日MRP预警推移
|
|
||||
public class SupplierMrpWarningService : RecurringJobOutPageController<SUPPLIER_MRP_WARNING, SUPPLIER_MRP_WARNING_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierMrpWarningService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_MRP_WARNING> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
public class SupplierPoService : RecurringJobOutPageController<SUPPLIER_PO, SUPPLIER_PO_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierPoService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PO> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//过焊装未过总装
|
|
||||
public class SupplierPorHSCHEDULService : RecurringJobOutPageController<SUPPLIER_PRO_HSCHEDUL, SUPPLIER_PRO_HSCHEDUL_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierPorHSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_HSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
public class SupplierProCSCHEDULService : RecurringJobOutPageController<SUPPLIER_PRO_CSCHEDUL, SUPPLIER_PRO_CSCHEDUL_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierProCSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_CSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,6 +0,0 @@ |
|||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
public class SupplierProStationFirstPassYieldService |
|
||||
{ |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//退货单
|
|
||||
public class SupplierReturnService : RecurringJobOutPageController<SUPPLIER_RETURN, SUPPLIER_RETURN_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierReturnService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_RETURN> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
/// <summary>
|
|
||||
/// 计划协议
|
|
||||
/// </summary>
|
|
||||
public class SupplierSaWeekService : RecurringJobOutPageController<SUPPLIER_SA_WEEK, SUPPLIER_SA_WEEK_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierSaWeekService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_SA_WEEK> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.Entity.Entitys; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
public class SupplierSinvDataService : RecurringJobOutPageController<SUPPLIER_SINV_DATA, SUPPLIER_SINV_DATA_DETAIL_DTO> |
|
||||
{ |
|
||||
public SupplierSinvDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_SINV_DATA> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using TaskManager.Contracts.Dtos; |
|
||||
using TaskManager.Controllers; |
|
||||
using TaskManager.Entity; |
|
||||
using TaskManager.EntityFramework; |
|
||||
|
|
||||
namespace TaskManager.Controllers |
|
||||
{ |
|
||||
//过涂装未过总装
|
|
||||
public class supplierProTSCHEDULService : RecurringJobOutPageController<SUPPLIER_PRO_TSCHEDUL, SUPPLIER_PRO_TSCHEDUL_DETAIL_DTO> |
|
||||
{ |
|
||||
public supplierProTSCHEDULService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_TSCHEDUL> repository) : base(httpClient, jobDbContext, log, repository) |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
Loading…
Reference in new issue