123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ZR.Model.Dto;
- using ZR.Model;
- using ZR.Model.System;
- namespace ZR.Service.System.IService
- {
- public interface IPdaAutoUpdateService : IBaseService<PdaAutoUpdate>
- {
- int AddPdaAutoUpdate(PdaAutoUpdate model);
- PagedInfo<PdaAutoUpdateDto> GetList(PdaAutoUpdateQueryDto parm);
- int UpdatePdaAutoUpdate(PdaAutoUpdate parm);
- PdaAutoUpdate GetPdaLatestmsg();
- }
- }
|