whyclj
2020-10-23 291d27a34b52911dbcfd8232f0685d34b0fc96a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dev.data;
 
/**
 *     Êý¾ÝÔ´
 * @author LiJun
 *
 */
public class Dev_DataSource {
 
    public int dev_id;
    public float analog_value;                //Ä£ÄâÁ¿Öµ
    public float switch_value;                //¿ª¹ØÁ¿Öµ
    public float state_value;                //״̬Á¿Öµ
    
    public Dev_DataSource clone() {
        Dev_DataSource temp = new Dev_DataSource();
        temp.dev_id = this.dev_id;
        temp.analog_value = this.analog_value;
        temp.switch_value = this.switch_value;
        temp.state_value = this.state_value;
        return temp;
    }
    
}