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.
23 lines
443 B
23 lines
443 B
package com.example.demo.mapper.pay;
|
|
|
|
|
|
import com.example.demo.domain.vo.bean.BeanRechargeInfo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanRechargeMapper
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−07-30 15:43
|
|
* @Version 1.0
|
|
**/
|
|
|
|
@Mapper
|
|
public interface BeanRechargeMapper3 {
|
|
|
|
List<BeanRechargeInfo> selectByOnline(BeanRechargeInfo beanRechargeInfo);
|
|
|
|
}
|