AppVersionServiceI.java 886 B

12345678910111213141516171819202122232425262728
  1. package cn.com.lzt.appversion.service;
  2. import java.io.Serializable;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import cn.com.lzt.appversion.entity.AppVersionEntity;
  5. public interface AppVersionServiceI extends CommonService{
  6. public void delete(AppVersionEntity entity) throws Exception;
  7. public Serializable save(AppVersionEntity entity) throws Exception;
  8. public Serializable save(AppVersionEntity entity, String tempBusiId) throws Exception;
  9. public void saveOrUpdate(AppVersionEntity entity) throws Exception;
  10. public void saveOrUpdate(AppVersionEntity entity, String tempBusiId) throws Exception;
  11. public Serializable saveAndUpdateRedis(AppVersionEntity entity, String tempBusiId) throws Exception;
  12. /**
  13. * 查询最新版本的app安装包信息
  14. *
  15. * @return
  16. */
  17. public AppVersionEntity findNewAppVersion(String systemFlag);
  18. }