qianhao.xu aa3ba91dce 1
2024-11-07 17:25:09 +08:00

32 lines
807 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);
ProReportwork GetInfo(string Id);
ProReportwork AddProReportwork(ProReportwork parm);
int UpdateProReportwork(ProReportwork parm);
List<ProReportworkDto> UserExport(DateTime handleDate);
int ManualGenerationOfReportWork(string workorder, string CreatedBy);
}
}