生产管理
This commit is contained in:
66
DOAN.Service/MES/Product/IService/IProWorkorderService.cs
Normal file
66
DOAN.Service/MES/Product/IService/IProWorkorderService.cs
Normal file
@@ -0,0 +1,66 @@
|
||||
using System;
|
||||
using DOAN.Model;
|
||||
|
||||
using DOAN.Model.MES.product;
|
||||
using DOAN.Model.MES.product.Dto;
|
||||
using DOAN.Model.System.Dto;
|
||||
using DOAN.Model.System;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using DOAN.Model.MES.base_;
|
||||
using DOAN.Model.MES.base_.Dto;
|
||||
using SqlSugar;
|
||||
|
||||
|
||||
|
||||
namespace DOAN.Service.MES.product.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产工单service接口
|
||||
/// </summary>
|
||||
public interface IProWorkorderService : IBaseService<ProWorkorder>
|
||||
{
|
||||
PagedInfo<ProWorkorderDto3> GetList(ProWorkorderQueryDto parm);
|
||||
PagedInfo<ProWorkorderDto> GetList_NOCheck(ProWorkorderQueryDto parm);
|
||||
|
||||
|
||||
PagedInfo<ProWorkorderTranceProgressDto> GetWorkorderTraceProgressList(ProWorkorderQueryDto query);
|
||||
|
||||
ProWorkorder GetInfo(string Id);
|
||||
|
||||
ProWorkorder AddProWorkorder(ProWorkorder parm);
|
||||
|
||||
int UpdateProWorkorder(ProWorkorder parm);
|
||||
|
||||
int Generate_workorder(ProWorkorderQueryDto2 parm);
|
||||
|
||||
int Insert_workOrder(ProWorkorder proWorkorder, string next_id);
|
||||
|
||||
int MoveWorkorder(string id, int type);
|
||||
|
||||
int ImportData(IFormFile formFile,string username);
|
||||
|
||||
|
||||
int ImportDataAppend(IFormFile formFile,string username);
|
||||
|
||||
public PagedInfo<ProWorkorder> WorkOrderExport(DateTime exportTime, PagerInfo pager);
|
||||
|
||||
List<BaseMaterialList> GetMaterialInfo(BaseMaterialListQueryDto5 parm);
|
||||
List<BaseCustom> GetCustomInfo(BaseCustomQueryDto2 parm);
|
||||
|
||||
// List<Group> GetGroupList(DateTime dateTime);
|
||||
|
||||
List<BaseWorkRoute> GetProcessRoute(DateTime dateTime);
|
||||
|
||||
List<BaseWorkRoute> GetAllRoute();
|
||||
|
||||
|
||||
// List<GroupSchedule> GetGroupList(string route_code, DateTime dateTime);
|
||||
|
||||
List<BaseGroup> GetGroupList();
|
||||
|
||||
List<WorkOrderBom> SearchBOMNum(string workorder_num);
|
||||
|
||||
int WorkOrderLog(string workorder, string log, string Operator);
|
||||
}
|
||||
}
|
||||
1236
DOAN.Service/MES/Product/ProWorkorderService.cs
Normal file
1236
DOAN.Service/MES/Product/ProWorkorderService.cs
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user