1234567891011121314151617181920212223242526272829 |
- package com.yihu.iot.model;
- /***
- * @ClassName: AppServiceCount
- * @Description:
- * @Auther: shi kejing
- * @Date: 2020/11/18 15:45
- */
- public class AppServiceCount {
- private int count;
- private String appName;
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public String getAppName() {
- return appName;
- }
- public void setAppName(String appName) {
- this.appName = appName;
- }
- }
|