ludc
2024-08-23 360cf955e142c001f96b20100f739e9b6a710e18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.web.other;
 
import java.io.Serializable;
 
public interface IExportLogBean extends Serializable{
    static final long serialVersionUID = 1L;
     static String RIGHT_STATE = "正常";
    /**
     * 返回字符串数组将内容写入到JTable文件中
     * @return
     */
    public abstract Object[] getLogRowObjcets();
    /**
     * 返回字符串将内容写入到log文件中
     * @return
     */
    public abstract String getLogRowContent();
 
}