添加的新功能

1.小程序用户修改项目的抽佣比例
2.小程序用户修改下级用户的项目明细抽佣比例
3.小程序用户一键设置项目的的抽佣比例
This commit is contained in:
2025-06-15 17:35:42 +08:00
parent 2827ef39c5
commit d18d87f81d
10 changed files with 615 additions and 73 deletions

View File

@ -2,6 +2,8 @@ package com.greenorange.promotion.mapper;
import com.greenorange.promotion.model.entity.SubUserProjectCommission;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Update;
/**
* @author 35880
@ -11,6 +13,9 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
*/
public interface SubUserProjectCommissionMapper extends BaseMapper<SubUserProjectCommission> {
@Update("${sql}")
void executeUpdate(@Param("sql") String sql);
}