no message

This commit is contained in:
2025-09-05 22:10:40 +08:00
parent eae4b284bf
commit 672360b756
6 changed files with 33 additions and 8 deletions

View File

@ -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>

View File

@ -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>