石墨消解仪后端服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
199 B

  1. package com.iflytop.gd.hardware.device;
  2. /**
  3. * 物理风扇
  4. */
  5. public class Fan {
  6. public boolean open() {
  7. return false;
  8. }
  9. public boolean close() {
  10. return false;
  11. }
  12. }