| | |
| | | <result property="career" column="career"/> |
| | | <result property="dwPhone" column="dw_phone"/> |
| | | <result property="pym" column="pym"/> |
| | | <result property="dictCompId" column="dict_comp_id"/> |
| | | <result property="compName" column="comp_name"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectTjCustomerVo"> |
| | |
| | | age_unit, |
| | | career, |
| | | dw_phone, |
| | | pym |
| | | pym,dictCompId,compName |
| | | from tj_customer |
| | | </sql> |
| | | |
| | |
| | | <if test="cusNumber != null ">and cus_number = #{cusNumber}</if> |
| | | <if test="cusIsvip != null and cusIsvip != ''">and cus_isvip = #{cusIsvip}</if> |
| | | <if test="pym != null and pym != ''">and pym = #{pym}</if> |
| | | <if test="dictCompId != null and dictCompId != ''">and dict_comp_id = #{dictCompId}</if> |
| | | <if test="compName != null and compName != ''">and comp_name = #{compName}</if> |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | <if test="career != null">career,</if> |
| | | <if test="dwPhone != null">dw_phone,</if> |
| | | <if test="pym != null">pym,</if> |
| | | <if test="dictCompId != null">dict_comp_id,</if> |
| | | <if test="compName != null">comp_name,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="cusName != null and cusName != ''">#{cusName},</if> |
| | |
| | | <if test="career != null">#{career},</if> |
| | | <if test="dw_phone != null">#{dwPhone},</if> |
| | | <if test="pym != null">#{pym},</if> |
| | | <if test="dictCompId != null">#{dictCompId},</if> |
| | | <if test="compName != null">#{compName},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | |
| | | <if test="career != null">career = #{career},</if> |
| | | <if test="dwPhone != null">dw_phone = #{dwPhone},</if> |
| | | <if test="pym != null">pym = #{pym},</if> |
| | | <if test="dictCompId != null">dict_comp_id = #{dictCompId},</if> |
| | | <if test="compName != null">comp_name = #{compName},</if> |
| | | </trim> |
| | | where cus_id = #{cusId} |
| | | </update> |