liujie
2023-08-31 a0afbd1e36f74cb521c4d51b08a54f6a1fe538f2
src/main/java/com/stylefeng/guns/modular/system/dao/mapping/TOrderMapper.xml
@@ -68,6 +68,9 @@
                                    create_time
                                    ) value (null ,#{orderId},#{url},#{name},now())
    </insert>
    <insert id="saveLonLat">
        insert into t_order_lonlat(id,orderId,lon,lat) value (null,#{id},#{lon},#{lat})
     </insert>
    <update id="agreePay">
        update t_order set pay_audit =1 where id=#{number}
@@ -296,5 +299,8 @@
<!--            and t1.status =1-->
<!--        </if>-->
    </select>
    <select id="getLonLat" resultType="java.util.Map">
        select lon,lat from t_order_lonlat where orderId =#{orderId}
    </select>
</mapper>