This commit is contained in:
qianhao.xu
2024-12-03 19:02:23 +08:00
parent 6cc576e43e
commit d62b577466
7 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using DOAN.Model.BZFM.Dto;
using DOAN.Model.BZFM;
using DOAN.Model.MES.product;
namespace DOAN.Service.BZFM.IBZFMService
{
/// <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);
}
}