28 lines
664 B
C#
28 lines
664 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);
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|