套餐显示手机号

This commit is contained in:
磷叶 2024-10-22 08:53:51 +08:00
parent 7984840603
commit d2085a4698
3 changed files with 9 additions and 0 deletions

View File

@ -25,4 +25,6 @@ public class SuitQuery extends Suit {
@ApiModelProperty("设备ID")
private Long deviceId;
@ApiModelProperty("手机号或用户名")
private String mobileOrUserName;
}

View File

@ -23,4 +23,7 @@ public class SuitVO extends Suit {
@ApiModelProperty("应用的设备列表")
@JsonView(JsonViewProfile.AppMch.class)
private List<DeviceVO> deviceList;
@ApiModelProperty("手机号或用户名")
private String mobileOrUserName;
}

View File

@ -35,6 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
ss.low_power,
ss.enabled_voice,
ss.voice_minutes,
if(su.phonenumber is not null, su.phonenumber, su.user_name) as mobile_or_user_name,
su.user_name as user_name
from <include refid="searchTables"/>
</sql>
@ -47,6 +48,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="searchCondition">
<if test="suitId != null "> and ss.suit_id = #{suitId}</if>
<if test="name != null and name != ''"> and ss.name like concat('%', #{name}, '%')</if>
<if test="mobileOrUserName != null and mobileOrUserName != ''">
and if(su.phonenumber is not null, su.phonenumber, su.user_name) like concat('%', #{mobileOrUserName}, '%')
</if>
<if test="value != null "> and ss.`value` = #{value}</if>
<if test="price != null "> and ss.price = #{price}</if>
<if test="description != null and description != ''"> and ss.description = #{description}</if>