https://www.lodashjs.com/docs/lodash.throttle#_throttlefunc-wait0-options
https://blog.csdn.net/glorydx/article/details/109893917
 const _handleTogglePower = useCallback(
    throttle(() => {
      lampPutDpData({ [powerCode]: !power });
    }, 200),
    [power]
  );