zhuangpei-mesbackend/DOAN.Service/MES/mm/IService/IMmPreparantTaskService.cs

36 lines
883 B
C#
Raw Normal View History

2024-09-04 16:31:41 +08:00
using DOAN.Model.MES.base_;
2024-09-04 17:16:52 +08:00
using DOAN.Model.MES.mm.Dto;
2024-09-04 16:43:29 +08:00
using DOAN.Model.MES.product;
2024-09-05 11:45:20 +08:00
using Microsoft.AspNetCore.Mvc;
2024-09-04 16:31:41 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.mm.IService
{
public interface IMmPreparantTaskService
{
List<BaseWorkRoute> GetProcessRouteList();
2024-09-04 16:43:29 +08:00
List<ProWorkorder> GetWorkOrder(DateTime searchDate, string route_code);
2024-09-04 17:16:52 +08:00
2024-09-04 17:25:16 +08:00
List<MmPreparationTaskDto> GetTaskList(string workorder);
2024-09-04 17:16:52 +08:00
2024-09-05 09:12:37 +08:00
List<MmTaskMaterialInfoDto> GetTaskMaterialInfo(string task_code);
List<MmTaskMaterialInfoANDBOmDto> GetTaskMaterialBOMContrast(string task_code);
2024-09-05 10:38:13 +08:00
int AddNewTask(string workorder, string CreatedBy);
2024-09-05 10:34:08 +08:00
int DeleteTask(string task_code);
2024-09-05 11:45:20 +08:00
int ModifyTaskNum(MmTaskMaterialInfoDto2 parm, string name);
2024-09-05 09:12:37 +08:00
2024-09-04 16:31:41 +08:00
}
}