AppServiceCount.java 499 B

1234567891011121314151617181920212223242526272829
  1. package com.yihu.iot.model;
  2. /***
  3. * @ClassName: AppServiceCount
  4. * @Description:
  5. * @Auther: shi kejing
  6. * @Date: 2020/11/18 15:45
  7. */
  8. public class AppServiceCount {
  9. private int count;
  10. private String appName;
  11. public int getCount() {
  12. return count;
  13. }
  14. public void setCount(int count) {
  15. this.count = count;
  16. }
  17. public String getAppName() {
  18. return appName;
  19. }
  20. public void setAppName(String appName) {
  21. this.appName = appName;
  22. }
  23. }