| 12345678910111213141516171819202122232425262728 |
- package cn.com.lzt.appversion.service;
- import java.io.Serializable;
- import org.jeecgframework.core.common.service.CommonService;
- import cn.com.lzt.appversion.entity.AppVersionEntity;
- public interface AppVersionServiceI extends CommonService{
-
- public void delete(AppVersionEntity entity) throws Exception;
-
- public Serializable save(AppVersionEntity entity) throws Exception;
-
- public Serializable save(AppVersionEntity entity, String tempBusiId) throws Exception;
-
- public void saveOrUpdate(AppVersionEntity entity) throws Exception;
-
- public void saveOrUpdate(AppVersionEntity entity, String tempBusiId) throws Exception;
-
- public Serializable saveAndUpdateRedis(AppVersionEntity entity, String tempBusiId) throws Exception;
-
- /**
- * 查询最新版本的app安装包信息
- *
- * @return
- */
- public AppVersionEntity findNewAppVersion(String systemFlag);
- }
|