whyclj
2019-11-02 7b0d9dc2adc6da45cb5593456c58d83a21de0cfe
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.donghuan.c_interface;
 
public class CIntefaceStateData {
    int bg_id;
    int tx_count;
    int rx_count;
    int com_err_count;
    int com_err_type;
    
    public CIntefaceStateData(int id) {
        bg_id = id;
    }
}