liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
 
package com.dingzhuo.energy.project.conglomeratepush.domain;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 集团数据推送实体类
 *
 * @author zhw
 * @since 2022-03-09
 */
public class ConglomeratePushLog implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 主键
     */
        private String id;
 
        /**
        * 推送状态(Y、N)
        */
        private String pushStatus;
        /**
        * 推送时间
        */
        private Date pushTime;
        /**
        * 推送内容(json串)
        */
        private String pushContent;
        /**
        * 推送次数
        */
        private Long pushCount;
 
        /**
        * 发送返回信息(sendRes)
        */
        private String pushResult;
 
        /**
         * 异常信息记录
         */
        private String errorInfo;
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getPushStatus() {
        return pushStatus;
    }
 
    public void setPushStatus(String pushStatus) {
        this.pushStatus = pushStatus;
    }
 
    public Date getPushTime() {
        return pushTime;
    }
 
    public void setPushTime(Date pushTime) {
        this.pushTime = pushTime;
    }
 
    public String getPushContent() {
        return pushContent;
    }
 
    public void setPushContent(String pushContent) {
        this.pushContent = pushContent;
    }
 
    public Long getPushCount() {
        return pushCount;
    }
 
    public void setPushCount(Long pushCount) {
        this.pushCount = pushCount;
    }
 
    public String getPushResult() {
        return pushResult;
    }
 
    public void setPushResult(String pushResult) {
        this.pushResult = pushResult;
    }
 
    public String getErrorInfo() {
        return errorInfo;
    }
 
    public void setErrorInfo(String errorInfo) {
        this.errorInfo = errorInfo;
    }
}