2025-05-09 20:56:51 +08:00
|
|
|
package com.greenorange.promotion.mapper;
|
|
|
|
|
|
|
|
import com.greenorange.promotion.model.entity.SubUserProjectCommission;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2025-06-15 17:35:42 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import org.apache.ibatis.annotations.Update;
|
2025-05-09 20:56:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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> {
|
|
|
|
|
2025-06-15 17:35:42 +08:00
|
|
|
@Update("${sql}")
|
|
|
|
void executeUpdate(@Param("sql") String sql);
|
|
|
|
|
2025-05-09 20:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|