fei.wang
2024-05-09 871d4095b07cedacb7fbef4c38d64982f539c404
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
72
73
74
75
76
77
package com.flow.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("tb_duanxinlog")
public class Duanxinlog {
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    private String receiver;
 
    private String number;
 
    private String content;
 
    private String dispatchdate;
 
    private String none;
 
    private String identification;
 
    public Duanxinlog() {
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getReceiver() {
        return receiver;
    }
 
    public void setReceiver(String receiver) {
        this.receiver = receiver;
    }
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getDispatchdate() {
        return dispatchdate;
    }
 
    public void setDispatchdate(String dispatchdate) {
        this.dispatchdate = dispatchdate;
    }
 
    public String getNone() {
        return none;
    }
 
    public void setNone(String none) {
        this.none = none;
    }
 
}