PublicExamineMapper.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.PublicExamine;
  3. import com.goafanti.customer.bo.PublicReleaseTransferUserBo;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. public interface PublicExamineMapper {
  7. int deleteByPrimaryKey(Integer id);
  8. int insert(PublicExamine record);
  9. int insertSelective(PublicExamine record);
  10. PublicExamine selectByPrimaryKey(Integer id);
  11. int updateByPrimaryKeySelective(PublicExamine record);
  12. int updateByPrimaryKey(PublicExamine record);
  13. List<PublicExamine> selectByPrid(Integer id);
  14. void updateStatusByPrid(PublicExamine pe);
  15. List<PublicExamine> selectByIds(@Param("ids") List<Integer> ids);
  16. void deletePrid(Integer id);
  17. /**
  18. *
  19. * @param oldAid 原aid
  20. * @param aid
  21. */
  22. void updateAidByAid(@Param("oldAid")String oldAid, @Param("aid")String aid);
  23. List<PublicReleaseTransferUserBo> selectByuList(@Param("list") List<String> list);
  24. void updateByPridSelective(PublicExamine pe);
  25. }