2025-05-09 20:56:51 +08:00
|
|
|
package com.greenorange.promotion.mapper;
|
|
|
|
|
|
|
|
import com.greenorange.promotion.model.entity.ProjectCommission;
|
|
|
|
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 针对表【project_commission(项目明细抽佣表)】的数据库操作Mapper
|
|
|
|
* @createDate 2025-05-09 18:42:17
|
|
|
|
* @Entity com.greenorange.promotion.model.entity.ProjectCommission
|
|
|
|
*/
|
|
|
|
public interface ProjectCommissionMapper extends BaseMapper<ProjectCommission> {
|
|
|
|
|
2025-06-15 17:35:42 +08:00
|
|
|
|
|
|
|
@Update("${sql}")
|
|
|
|
void executeUpdate(@Param("sql") String sql);
|
2025-05-09 20:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|