qianhao.xu 084947b38a 导出
2024-11-04 13:47:51 +08:00

30 lines
728 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);
}
}