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
31 lines
686 B
package com.example.demo.mapper.coin;
|
|
|
|
|
|
import com.example.demo.domain.vo.bean.BeanAuditInfo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanAuditMapper
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−08-01 11:44
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Mapper
|
|
public interface BeanAuditMapper {
|
|
//查找审核信息
|
|
List<BeanAuditInfo> selectBy(BeanAuditInfo beanAuditInfo);
|
|
|
|
//根据id查询审核信息
|
|
BeanAuditInfo selectById(Long id);
|
|
|
|
//根据id更新状态为1
|
|
void updateStatus1(BeanAuditInfo beanAuditInfo);
|
|
|
|
//根据id更新状态为2
|
|
void updateStatus2(BeanAuditInfo beanAuditInfo);
|
|
}
|