Browse Source

驾校订单字段修改

Althars123 3 years ago
parent
commit
7ef6611da8

+ 1 - 1
twzd-service/src/main/java/com/miaxis/score/dto/ScoreInfoPcDTO.java

@@ -29,7 +29,7 @@ public class ScoreInfoPcDTO extends BaseBusinessEntity {
     /** 区级 */
     @ApiModelProperty(value = "区级")
     private String areaName;
-
+//
 //    /** 车型 */
 //    @ApiModelProperty(value = "车型")
 //    private String type;

+ 1 - 1
twzd-service/src/main/resources/mapper/score/ScoreInfoMapper.xml

@@ -99,7 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="areaName != null and areaName != ''"> and u.area_name like concat('%', #{areaName}, '%')</if>
             <if test="schoolName != null and schoolName != ''"> and u.school_name like concat('%', #{schoolName}, '%')</if>
             <if test="nickName != null and nickName != ''"> and u.nick_name like concat('%', #{nickName}, '%')</if>
-            <if test="type != null and type != ''"> and s.type = #{type} </if>
+            <!--<if test="type != null and type != ''"> and s.type = #{type} </if>-->
         </where>
         group by u.id desc
     </select>