23 lines
522 B
C#
23 lines
522 B
C#
using DOAN.Model.BZFM.Dto;
|
|
using DOAN.Model.BZFM;
|
|
using DOAN.Model.MES.product;
|
|
|
|
namespace DOAN.Service.MES.product.IService
|
|
{
|
|
/// <summary>
|
|
/// 报工service接口
|
|
/// </summary>
|
|
public interface IProReportworkService : IBaseService<ProReportwork01>
|
|
{
|
|
PagedInfo<ProReportworkDto> GetList(ProReportworkQueryDto parm);
|
|
|
|
ProReportwork01 GetInfo(string Id);
|
|
|
|
|
|
ProReportwork01 AddProReportwork(ProReportwork01 parm);
|
|
int UpdateProReportwork(ProReportwork01 parm);
|
|
|
|
|
|
}
|
|
}
|