19 lines
463 B
Java
19 lines
463 B
Java
|
package com.greenorange.promotion.mapper;
|
||
|
|
||
|
import com.greenorange.promotion.model.entity.WithdrawalApply;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author 35880
|
||
|
* @description 针对表【withdrawal_apply(提现申请记录表)】的数据库操作Mapper
|
||
|
* @createDate 2025-05-10 20:42:35
|
||
|
* @Entity com.greenorange.promotion.model.entity.WithdrawalApply
|
||
|
*/
|
||
|
public interface WithdrawalApplyMapper extends BaseMapper<WithdrawalApply> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|