xiaoyong931011
2022-12-01 b42b551f5b85df5ffbaeaa18c373b8a8f1a51953
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DappSystemProfit;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface DappSystemProfitDao extends BaseMapper<DappSystemProfit> {
 
    DappSystemProfit selectSystemProfitByState(@Param("state") int stateOut);
 
    DappSystemProfit selectByIdForUpdate(@Param("id") Long id,@Param("state") int stateOut);
 
    void updateLevelProfitById(@Param("levelProfit") int levelProfit,@Param("id")Long id);
 
    void updateStateById(@Param("state") int stateOut,@Param("id")Long id);
}