IPdaAutoUpdateService.cs 525 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using ZR.Model.Dto;
  7. using ZR.Model;
  8. using ZR.Model.System;
  9. namespace ZR.Service.System.IService
  10. {
  11. public interface IPdaAutoUpdateService : IBaseService<PdaAutoUpdate>
  12. {
  13. int AddPdaAutoUpdate(PdaAutoUpdate model);
  14. PagedInfo<PdaAutoUpdateDto> GetList(PdaAutoUpdateQueryDto parm);
  15. int UpdatePdaAutoUpdate(PdaAutoUpdate parm);
  16. PdaAutoUpdate GetPdaLatestmsg();
  17. }
  18. }