whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
@Alias("User_task_user_list")
public class User_task_user_list implements Serializable{
    
    private Integer num;
    private Integer task_id;
    private Integer uId;
    private Integer usr_type;
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getTask_id() {
        return task_id;
    }
    public void setTask_id(Integer task_id) {
        this.task_id = task_id;
    }
 
    public Integer getuId() {
        return uId;
    }
 
    public void setuId(Integer uId) {
        this.uId = uId;
    }
 
    public Integer getUsr_type() {
        return usr_type;
    }
    public void setUsr_type(Integer usr_type) {
        this.usr_type = usr_type;
    }
 
    @Override
    public String toString() {
        return "User_task_user_list{" +
                "num=" + num +
                ", task_id=" + task_id +
                ", uId=" + uId +
                ", usr_type=" + usr_type +
                '}';
    }
}