OaNotifyMapper.java 765 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
  3. */
  4. package com.jeeplus.modules.oa.mapper;
  5. import com.jeeplus.core.persistence.BaseMapper;
  6. import com.jeeplus.core.persistence.annotation.MyBatisMapper;
  7. import com.jeeplus.modules.oa.entity.OaNotify;
  8. import com.jeeplus.modules.sg.managementcenter.project.entity.PickingRequisition;
  9. import java.util.List;
  10. /**
  11. * 通知通告MAPPER接口
  12. * @author jeeplus
  13. * @version 2017-05-16
  14. */
  15. @MyBatisMapper
  16. public interface OaNotifyMapper extends BaseMapper<OaNotify> {
  17. /**
  18. * 获取通知数目
  19. * @param oaNotify
  20. * @return
  21. */
  22. public Long findCount(OaNotify oaNotify);
  23. /**
  24. * 获取缺货信息
  25. */
  26. public List<PickingRequisition> notifyInformation();
  27. }