|
@@ -11,8 +11,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="name" column="name" />
|
|
|
<result property="sex" column="sex" />
|
|
|
<result property="age" column="age" />
|
|
|
- <result property="isContagion" column="is_contagion" />
|
|
|
- <result property="haveContagion" column="have_contagion" />
|
|
|
<result property="provinceCode" column="province_code" />
|
|
|
<result property="provinceName" column="province_name" />
|
|
|
<result property="cityCode" column="city_code" />
|
|
@@ -31,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectAddressVo">
|
|
|
- select address_id, user_id, telephone, name,sex, age, is_contagion, have_contagion, province_code, province_name, city_code, city_name, district_code, district_name, address, is_default, is_delete, label, create_time, create_by, update_time, update_by, remark from l_address
|
|
|
+ select address_id, user_id, telephone, name,sex, age, province_code, province_name, city_code, city_name, district_code, district_name, address, is_default, is_delete, label, create_time, create_by, update_time, update_by, remark from l_address
|
|
|
</sql>
|
|
|
|
|
|
|
|
@@ -79,8 +77,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="name != null">name,</if>
|
|
|
<if test="sex != null">sex,</if>
|
|
|
<if test="age != null">age,</if>
|
|
|
- <if test="isContagion != null">is_contagion,</if>
|
|
|
- <if test="haveContagion != null">have_contagion,</if>
|
|
|
<if test="provinceCode != null">province_code,</if>
|
|
|
<if test="provinceName != null">province_name,</if>
|
|
|
<if test="cityCode != null">city_code,</if>
|
|
@@ -103,8 +99,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="name != null">#{name},</if>
|
|
|
<if test="sex != null">#{sex},</if>
|
|
|
<if test="age != null">#{age},</if>
|
|
|
- <if test="isContagion != null">#{isContagion},</if>
|
|
|
- <if test="haveContagion != null">#{haveContagion},</if>
|
|
|
<if test="provinceCode != null">#{provinceCode},</if>
|
|
|
<if test="provinceName != null">#{provinceName},</if>
|
|
|
<if test="cityCode != null">#{cityCode},</if>
|
|
@@ -131,8 +125,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="name != null">name = #{name},</if>
|
|
|
<if test="sex != null">sex = #{sex},</if>
|
|
|
<if test="age != null">age = #{age},</if>
|
|
|
- <if test="isContagion != null">is_contagion = #{isContagion},</if>
|
|
|
- <if test="haveContagion != null">have_contagion = #{haveContagion},</if>
|
|
|
<if test="provinceCode != null">province_code = #{provinceCode},</if>
|
|
|
<if test="provinceName != null">province_name = #{provinceName},</if>
|
|
|
<if test="cityCode != null">city_code = #{cityCode},</if>
|