zhangnaisong
2024-01-24 c3a37601a4867103447b6a2a57ae0227d1512109
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
package com.ruoyi.app.application.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 单兵端申请查看指挥端位置或三一车辆位置对象 ard_app_application
 * 
 * @author ard
 * @date 2024-01-23
 */
public class ArdAppApplication extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 申请主键 */
    @Excel(name = "申请主键")
    private String applicationId;
 
    /** 指挥端或PC端主键 */
    @Excel(name = "指挥端或PC端主键")
    private String commanderId;
 
    /** 单兵端主键 */
    @Excel(name = "单兵端主键")
    private String soilderId;
 
    /** 申请原因 */
    @Excel(name = "申请原因")
    private String reason;
 
    /** 申请类型 */
    @Excel(name = "申请类型")
    private String applicationType;
 
    /** 审批同意时间戳 */
    @Excel(name = "审批同意时间戳")
    private String begin;
 
    /** 审批状态 */
    @Excel(name = "审批状态")
    private String state;
 
    public void setApplicationId(String applicationId) 
    {
        this.applicationId = applicationId;
    }
 
    public String getApplicationId() 
    {
        return applicationId;
    }
    public void setCommanderId(String commanderId) 
    {
        this.commanderId = commanderId;
    }
 
    public String getCommanderId() 
    {
        return commanderId;
    }
    public void setSoilderId(String soilderId) 
    {
        this.soilderId = soilderId;
    }
 
    public String getSoilderId() 
    {
        return soilderId;
    }
    public void setReason(String reason) 
    {
        this.reason = reason;
    }
 
    public String getReason() 
    {
        return reason;
    }
    public void setApplicationType(String applicationType) 
    {
        this.applicationType = applicationType;
    }
 
    public String getApplicationType() 
    {
        return applicationType;
    }
    public void setBegin(String begin) 
    {
        this.begin = begin;
    }
 
    public String getBegin() 
    {
        return begin;
    }
    public void setState(String state) 
    {
        this.state = state;
    }
 
    public String getState() 
    {
        return state;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("applicationId", getApplicationId())
            .append("commanderId", getCommanderId())
            .append("soilderId", getSoilderId())
            .append("reason", getReason())
            .append("applicationType", getApplicationType())
            .append("begin", getBegin())
            .append("state", getState())
            .toString();
    }
}