no message
This commit is contained in:
@ -48,7 +48,7 @@
|
||||
SELECT
|
||||
<include refid="Base_Column_List" />
|
||||
FROM zc_company
|
||||
WHERE b_op_id = #{operator_id}
|
||||
WHERE b_op_id = #{bOpId}
|
||||
AND is_delete = 0
|
||||
</select>
|
||||
|
||||
|
||||
@ -12,6 +12,7 @@
|
||||
<result column="city_id" property="city" />
|
||||
<result column="area_id" property="area" />
|
||||
<result column="address" property="address" />
|
||||
<result column="operating_company_id" property="operator_id" />
|
||||
<result column="image" property="image" />
|
||||
<result column="latitude" property="latitude" />
|
||||
<result column="longitude" property="longitude" />
|
||||
@ -150,6 +151,9 @@
|
||||
<if test="is_delete != null">
|
||||
del_flag = #{is_delete},
|
||||
</if>
|
||||
<if test="operator_id != null">
|
||||
operating_company_id = #{operator_id},
|
||||
</if>
|
||||
</set>
|
||||
WHERE bp_store_id = #{bpStoreId}
|
||||
</update>
|
||||
@ -168,6 +172,7 @@
|
||||
latitude,
|
||||
longitude,
|
||||
del_flag,
|
||||
operating_company_id,
|
||||
bp_store_id
|
||||
) VALUES (
|
||||
#{name},
|
||||
@ -181,6 +186,7 @@
|
||||
#{latitude},
|
||||
#{longitude},
|
||||
#{is_delete},
|
||||
#{operator_id},
|
||||
#{bpStoreId}
|
||||
)
|
||||
</insert>
|
||||
|
||||
Reference in New Issue
Block a user