19 lines
522 B
Java
19 lines
522 B
Java
|
package com.greenorange.promotion.mapper;
|
||
|
|
||
|
import com.greenorange.promotion.model.entity.SubUserProjectCommission;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author 35880
|
||
|
* @description 针对表【sub_user_project_commission(下级用户项目明细抽佣表)】的数据库操作Mapper
|
||
|
* @createDate 2025-05-09 19:06:19
|
||
|
* @Entity com.greenorange.promotion.model.entity.SubUserProjectCommission
|
||
|
*/
|
||
|
public interface SubUserProjectCommissionMapper extends BaseMapper<SubUserProjectCommission> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|