去除引用common.props
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
public Task AddEquipSpareParts(EquipSparePartsInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据设备id获取备品备件
|
||||
/// </summary>
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
using JNPF.Common.Dtos.VisualDev;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
@@ -18,14 +17,14 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// <param name="dic"></param>
|
||||
/// <returns></returns>
|
||||
public Task<MaintainRecordRepeatOutput> GetMaintainRecordRepeatInfo(Dictionary<string, string> dic);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 复核备保养计划
|
||||
/// </summary>
|
||||
/// <param name="pageInput"></param>
|
||||
/// <returns></returns>
|
||||
public Task<string> RepeatMaintain(MaintainRecordRepeatInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据设备id获取设备保养记录
|
||||
/// </summary>
|
||||
|
||||
@@ -2,7 +2,7 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IEqpMaintainTemEquipService
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 停止计划
|
||||
/// </summary>
|
||||
|
||||
@@ -5,43 +5,43 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IEqpRepairApplyService
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 维修作废
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Repeal(Dictionary<string,string> dic);
|
||||
|
||||
public Task<string> Repeal(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修关闭
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Close(Dictionary<string,string> dic);
|
||||
|
||||
public Task<string> Close(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修指派
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Assign(Dictionary<string,string> dic);
|
||||
|
||||
public Task<string> Assign(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修接收
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Receive(Dictionary<string,string> dic);
|
||||
|
||||
public Task<string> Receive(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修拒绝
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Refuse(Dictionary<string,string> dic);
|
||||
|
||||
public Task<string> Refuse(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修信息
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<EqpRepairApply> GetInfo(Dictionary<string,string> dic);
|
||||
|
||||
public Task<EqpRepairApply> GetInfo(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 维修登记
|
||||
/// </summary>
|
||||
@@ -53,13 +53,13 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<RepairApplyDetailOutput> GetRepairApplyDetail(Dictionary<string, string> dic);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据设备id获取维修记录
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetRepairRecordList(EquipQueryInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 看板端设备报修维修列表接口
|
||||
/// </summary>
|
||||
|
||||
@@ -9,6 +9,6 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Delay(RepairDelayInput input);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -5,24 +5,24 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IEqpRepairOutApplyService
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取外修申请信息
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<EqpRepairOutApply> GetInfo(Dictionary<string,string> dic);
|
||||
|
||||
public Task<EqpRepairOutApply> GetInfo(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 外修申请
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> OutApply(RepairOutApplyInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 外修登记
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
public Task<string> Register(RepairApplyOutRegisterInput input);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
using Tnb.EquipMgr.Entities;
|
||||
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IEqpSpEquipCheckRecordService
|
||||
|
||||
@@ -5,6 +5,6 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// </summary>
|
||||
public interface IEqpSparePartsRequisitionHService
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -12,7 +12,7 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetEquipWorkshopChangeList(EquipQueryInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 设备迁移
|
||||
/// </summary>
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
using JNPF.Common.Dtos.VisualDev;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
@@ -18,14 +17,14 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// <param name="dic"></param>
|
||||
/// <returns></returns>
|
||||
public Task<SpotInsRecordRepeatOutput> GetSpotInsRecordRepeatInfo(Dictionary<string, string> dic);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 复核点巡检
|
||||
/// </summary>
|
||||
/// <param name="pageInput"></param>
|
||||
/// <returns></returns>
|
||||
public Task RepeatSpotIns(SpotInsRecordRepeatInput input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据设备id获取点巡检记录
|
||||
/// </summary>
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// <param name="dic"></param>
|
||||
/// <returns></returns>
|
||||
public Task<EqpEquipment> GetEntityById(Dictionary<string, string> dic);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据设备类型获取设备列表
|
||||
/// </summary>
|
||||
@@ -22,8 +22,8 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// 获取产线和注塑挤出设备树
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetWorklineAndEquipTree(Dictionary<string,string> dic);
|
||||
|
||||
public Task<dynamic> GetWorklineAndEquipTree(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 根据二维码查设备
|
||||
/// </summary>
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// 目录库房服务接口
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// 模具库位服务接口
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// 模具保养项目组接口
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IToolMoldMaintainPlanRunService
|
||||
{
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IToolMoldMaintainPlanService
|
||||
{
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备保养规则定义
|
||||
|
||||
@@ -1,9 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.EquipMgr.Entities;
|
||||
using Tnb.EquipMgr.Entities;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
|
||||
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
|
||||
@@ -5,6 +5,6 @@ namespace Tnb.EquipMgr.Interfaces
|
||||
/// </summary>
|
||||
public interface IToolMoldRequisitionService
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Tnb.EquipMgr.Entities;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
using Tnb.ProductionMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="$(SolutionDir)\common.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
|
||||
Reference in New Issue
Block a user