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 { int AddPdaAutoUpdate(PdaAutoUpdate model); PagedInfo GetList(PdaAutoUpdateQueryDto parm); int UpdatePdaAutoUpdate(PdaAutoUpdate parm); PdaAutoUpdate GetPdaLatestmsg(); } }