添加的新功能
1.小程序用户修改项目的抽佣比例 2.小程序用户修改下级用户的项目明细抽佣比例 3.小程序用户一键设置项目的的抽佣比例
This commit is contained in:
@ -2,6 +2,8 @@ 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
|
||||
@ -11,6 +13,9 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
*/
|
||||
public interface ProjectCommissionMapper extends BaseMapper<ProjectCommission> {
|
||||
|
||||
|
||||
@Update("${sql}")
|
||||
void executeUpdate(@Param("sql") String sql);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user