You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
686 B

  1. package com.example.demo.mapper.coin;
  2. import com.example.demo.domain.vo.bean.BeanAuditInfo;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. /**
  6. * @program: gold-java
  7. * @ClassName BeanAuditMapper
  8. * @description:
  9. * @author: Double
  10. * @create: 202508-01 11:44
  11. * @Version 1.0
  12. **/
  13. @Mapper
  14. public interface BeanAuditMapper {
  15. //查找审核信息
  16. List<BeanAuditInfo> selectBy(BeanAuditInfo beanAuditInfo);
  17. //根据id查询审核信息
  18. BeanAuditInfo selectById(Long id);
  19. //根据id更新状态为1
  20. void updateStatus1(BeanAuditInfo beanAuditInfo);
  21. //根据id更新状态为2
  22. void updateStatus2(BeanAuditInfo beanAuditInfo);
  23. }