银盛D1相关,提现部分改动,注册逻辑更改,后台切换通道

This commit is contained in:
liuyingfang
2023-07-05 17:01:33 +08:00
parent 5beafd2970
commit dfa5c6670f
18 changed files with 194 additions and 40 deletions

View File

@@ -6,10 +6,29 @@ import cn.pluss.platform.vo.MerchantChannelStatusVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import java.util.List;
@Mapper
public interface UserPromotionMapper extends BaseMapper<UserPromotion> {
List<UserPromotion> selectListByUserId(@Param("userIdList") List<Integer> userIdList);
@Select(value = "SELECT\n" +
"\tP.user_id AS userId,\n" +
"\tP.type_code AS typeCode,\n" +
"\tP.current_fee AS currentFee,\n" +
"\tP.parent_user_id AS parentUserId,\n" +
"\tP.is_extend AS isExtend,\n" +
"\tP.create_time AS createTime,\n" +
"\tP.update_time AS updateTime,\n" +
"\tu.loginName \n" +
"FROM\n" +
"\ttb_pluss_user_promotion P\n" +
"\tLEFT JOIN tb_pluss_user_info u ON P.user_id = u.id \n" +
"WHERE\n" +
"\tP.user_id = #{userId}")
UserPromotion selectByUserId(@Param("userId") String userId);
}