zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package DataBase;
 
public class Columns {//Êý¾Ý¿âµÄÁÐÀà
    private String name;// ÁÐÃû
    private String type;// ×Ö¶ÎÀàÐÍ
    private boolean isNull;// ÊÇ·ñ¿ÉÒÔΪnull
    private boolean isKey;// ÊÇ·ñÊÇÖ÷¼ü
    private boolean isIncrement;// ÊÇ·ñ×ÔÔö
 
    public Columns() {
        super();
    }
 
    public Columns(String name, String type, boolean isNull, boolean isKey,
            boolean isIncrement) {
        super();
        this.name = name;
        this.type = type;
        this.isNull = isNull;
        this.isKey = isKey;
        this.isIncrement = isIncrement;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public boolean isNull() {
        return isNull;
    }
 
    public void setNull(boolean isNull) {
        this.isNull = isNull;
    }
 
    public boolean isKey() {
        return isKey;
    }
 
    public void setKey(boolean isKey) {
        this.isKey = isKey;
    }
 
    public boolean isIncrement() {
        return isIncrement;
    }
 
    public void setIncrement(boolean isIncrement) {
        this.isIncrement = isIncrement;
    }
 
    @Override
    public String toString() {
        return "Columns [name=" + name + ", type=" + type + ", isNull="
                + isNull + ", isKey=" + isKey + ", isIncrement=" + isIncrement
                + "]";
    }
 
}