Commit ff300226 by Java-聂换换

商户进件

parent ce49c9a1
......@@ -5,6 +5,7 @@ import com.thinkgem.jeesite.common.baseBean.Request;
import java.util.List;
public class UserRequest extends Request {
private String payChannel;// 支付渠道
private String mobile; // 电话号码
private String password; // 密码
private String newPassword; // 新密码 用于注册功能、忘记密码功能、修改密码功能
......@@ -280,4 +281,12 @@ public class UserRequest extends Request {
public void setLevel(String level) {
this.level = level;
}
public String getPayChannel() {
return payChannel;
}
public void setPayChannel(String payChannel) {
this.payChannel = payChannel;
}
}
......@@ -245,6 +245,9 @@
yc.user_code = #{subMerchantCode}
AND yc.card_type = #{cardType}
AND yc.del_flag = '0'
<if test="payChannel!=null and payChannel != ''">
AND yb.support_pay_channel LIKE concat('%',#{payChannel},',%')
</if>
</select>
<select id="getCardInfo" resultType="com.thinkgem.jeesite.modules.user.entity.CardEntity">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment