43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
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;
|
|
|
|
|
|
namespace DOAN.Service.MES.product.IService
|
|
{
|
|
/// <summary>
|
|
/// 生产工单service接口
|
|
/// </summary>
|
|
public interface IProWorkorderService : IBaseService<ProWorkorder>
|
|
{
|
|
PagedInfo<ProWorkorderDto3> GetList(ProWorkorderQueryDto parm);
|
|
|
|
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);
|
|
|
|
public PagedInfo<ProWorkorder> WorkOrderExport(DateTime exportTime, PagerInfo pager);
|
|
|
|
List<BaseMaterialList> GetMaterialInfo(BaseMaterialListQueryDto query);
|
|
|
|
}
|
|
}
|