19 lines
462 B
Java
19 lines
462 B
Java
|
package com.greenorange.promotion.mapper;
|
||
|
|
||
|
import com.greenorange.promotion.model.entity.PromoCodeApply;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author 35880
|
||
|
* @description 针对表【promo_code_apply(推广码申请记录表)】的数据库操作Mapper
|
||
|
* @createDate 2025-05-10 19:53:05
|
||
|
* @Entity com.greenorange.promotion.model.entity.PromoCodeApply
|
||
|
*/
|
||
|
public interface PromoCodeApplyMapper extends BaseMapper<PromoCodeApply> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|