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.
27 lines
723 B
27 lines
723 B
package com.example.demo.service.bean;
|
|
|
|
import com.example.demo.domain.vo.bean.BeanAuditInfo;
|
|
import com.example.demo.domain.vo.bean.BeanRechargeInfo;
|
|
import com.example.demo.domain.vo.bean.GoldBean;
|
|
import com.example.demo.domain.vo.coin.Result;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanAuditService
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−08-01 11:36
|
|
* @Version 1.0
|
|
**/
|
|
|
|
public interface BeanAuditService {
|
|
//查找审核信息
|
|
PageInfo<BeanAuditInfo> selectBy(Integer pageNum, Integer pageSize, BeanAuditInfo beanAuditInfo);
|
|
|
|
Result updateStatus1(Long id);
|
|
|
|
void updateStatus2(Long id);
|
|
|
|
GoldBean statsBean(BeanAuditInfo beanAuditInfo);
|
|
}
|