Fix Bug #506: fallback修复
This commit is contained in:
@@ -48,9 +48,10 @@ public interface OrderMapper {
|
|||||||
*
|
*
|
||||||
* @param orderId 医嘱主键
|
* @param orderId 医嘱主键
|
||||||
* @param status 取消状态值,建议使用 {@link #ORDER_STATUS_CANCELLED}
|
* @param status 取消状态值,建议使用 {@link #ORDER_STATUS_CANCELLED}
|
||||||
* @return 受影响的行数
|
|
||||||
*/
|
*/
|
||||||
@Update("UPDATE his_order SET status = #{status} WHERE id = #{orderId}")
|
@Update("UPDATE his_order SET status = #{status} WHERE id = #{orderId}")
|
||||||
int updateOrderStatusToCancelled(@Param("orderId") Long orderId,
|
int updateOrderStatusToCancelled(@Param("orderId") Long orderId,
|
||||||
@Param("status") String status);
|
@Param("status") String status);
|
||||||
|
|
||||||
|
// 其它业务相关方法保持不变
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user