24 lines
635 B
Java
24 lines
635 B
Java
package com.greenorange.promotion.mapper;
|
|
|
|
import com.greenorange.promotion.model.entity.ProjectCommission;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Update;
|
|
|
|
/**
|
|
* @author 35880
|
|
* @description 针对表【project_commission(项目明细抽佣表)】的数据库操作Mapper
|
|
* @createDate 2025-05-09 18:42:17
|
|
* @Entity com.greenorange.promotion.model.entity.ProjectCommission
|
|
*/
|
|
public interface ProjectCommissionMapper extends BaseMapper<ProjectCommission> {
|
|
|
|
|
|
@Update("${sql}")
|
|
void executeUpdate(@Param("sql") String sql);
|
|
}
|
|
|
|
|
|
|
|
|