sfd
2025-05-26 2a64b537e8e3bce9ce030585a3da17d48379c0ad
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.aps.job.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
 
/**
 * 工单同步日志对象 aps_work_order_job_log
 * 
 * @author zhl
 * @date 2025-04-17
 */
public class ApsWorkOrderJobLog extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 页数 */
    @Excel(name = "页数")
    private Long pageNum;
 
    /** 数据条数 */
    @Excel(name = "数据条数")
    private Long pageCount;
 
    /** json格式数据 */
    @Excel(name = "json格式数据")
    private String responseData;
 
    /** 保存结果 */
    @Excel(name = "保存结果")
    private String result;
 
    /** 同步主键 */
    @Excel(name = "同步主键")
    private String orderId;
 
    /** 请求数据 */
    @Excel(name = "请求数据")
    private String requestData;
 
 
 
    private String bizType;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
 
    public void setPageNum(Long pageNum) 
    {
        this.pageNum = pageNum;
    }
 
    public Long getPageNum() 
    {
        return pageNum;
    }
 
    public void setPageCount(Long pageCount) 
    {
        this.pageCount = pageCount;
    }
 
    public Long getPageCount() 
    {
        return pageCount;
    }
 
    public void setResponseData(String responseData) 
    {
        this.responseData = responseData;
    }
 
    public String getResponseData() 
    {
        return responseData;
    }
 
    public void setResult(String result) 
    {
        this.result = result;
    }
 
    public String getResult() 
    {
        return result;
    }
 
    public void setOrderId(String orderId) 
    {
        this.orderId = orderId;
    }
 
    public String getOrderId() 
    {
        return orderId;
    }
 
    public void setRequestData(String requestData) 
    {
        this.requestData = requestData;
    }
 
    public String getRequestData() 
    {
        return requestData;
    }
    public String getBizType() {
        return bizType;
    }
 
    public void setBizType(String bizType) {
        this.bizType = bizType;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("pageNum", getPageNum())
            .append("pageCount", getPageCount())
            .append("responseData", getResponseData())
            .append("result", getResult())
            .append("orderId", getOrderId())
            .append("requestData", getRequestData())
                .append("bizType", getBizType())
            .toString();
    }
}