24 lines
679 B
C#
24 lines
679 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.exception.Dto;
|
|
using DOAN.Model.MES.exception;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.exception.IService
|
|
{
|
|
/// <summary>
|
|
/// 工单修改日志表service接口
|
|
/// </summary>
|
|
public interface IProWorkorderUpdateLogService : IBaseService<ProWorkorderUpdateLog>
|
|
{
|
|
PagedInfo<ProWorkorderUpdateLogDto> GetList(ProWorkorderUpdateLogQueryDto parm);
|
|
|
|
ProWorkorderUpdateLog GetInfo(string Id);
|
|
|
|
ProWorkorderUpdateLog AddProWorkorderUpdateLog(ProWorkorderUpdateLog parm);
|
|
|
|
int UpdateProWorkorderUpdateLog(ProWorkorderUpdateLog parm);
|
|
}
|
|
}
|