IPdaAutoUpdateService.cs 361 B

123456789101112131415
  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.System;
  7. namespace ZR.Service.System.IService
  8. {
  9. public interface IPdaAutoUpdateService : IBaseService<PdaAutoUpdate>
  10. {
  11. int AddPdaAutoUpdate(PdaAutoUpdate model);
  12. PdaAutoUpdate GetPdaLatestmsg();
  13. }
  14. }