2025-03-31 15:48:30 +08:00

37 lines
1011 B
C#

using DOAN.Model;
using DOAN.Model.MES.base_.Dto;
using DOAN.Model.MES.product;
using DOAN.Model.MES.product.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.product.IService
{
/// <summary>
/// 报工表service接口
/// </summary>
public interface IProReportworkService : IBaseService<ProReportwork>
{
PagedInfo<ProReportworkDto> GetList(ProReportworkQueryDto parm);
PagedInfo<ProReportworkDto> GetList_Print(ProReportworkQueryDto parm);
ProReportwork GetInfo(string Id);
ProReportwork AddProReportwork(ProReportwork parm);
int UpdateProReportwork(ProReportwork parm);
List<ProReportworkDto> UserExport(DateTime handleDate);
string ManualGenerationOfReportWork(string workorder, string CreatedBy);
int batchPutInFinProduct(DateTime startTime, DateTime endTime);
int putInAndReject(string Id, int type);
}
}