15 lines
301 B
Java
15 lines
301 B
Java
package com.ruoyi.cai.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ruoyi.cai.domain.WithdrawExchange;
|
|
|
|
/**
|
|
* 提现 - 兑换配置Mapper接口
|
|
*
|
|
* @author 77
|
|
* @date 2023-12-24
|
|
*/
|
|
public interface CaiWithdrawExchangeMapper extends BaseMapper<WithdrawExchange> {
|
|
|
|
}
|