lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Batt_User_Permit implements Serializable{
    private User_inf uinf;
    private User_permitgroup upgroup;
    private User_log ulog;
    private BattInf binf;
    private Page page;
    
    public User_inf getUinf() {
        return uinf;
    }
 
    public void setUinf(User_inf uinf) {
        this.uinf = uinf;
    }
 
    public User_permitgroup getUpgroup() {
        return upgroup;
    }
 
    public void setUpgroup(User_permitgroup upgroup) {
        this.upgroup = upgroup;
    }
    
    public User_log getUlog() {
        return ulog;
    }
 
    public void setUlog(User_log ulog) {
        this.ulog = ulog;
    }
 
    public BattInf getBinf() {
        return binf;
    }
 
    public void setBinf(BattInf binf) {
        this.binf = binf;
    }
    
    public Page getPage() {
        return page;
    }
 
    public void setPage(Page page) {
        this.page = page;
    }
 
    @Override
    public String toString() {
        return "Batt_User_Permit [uinf=" + uinf + ", upgroup=" + upgroup
                + ", binf=" + binf + ", page=" + page + "]";
    }
    
}