wlzboy
2025-09-20 b62bc392f3c1658381107be1d5f737a3389e7f5f
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
package com.ruoyi.gps.domain;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
/**
 * CMS GPS登录响应
 */
public class CmsGpsLoginResponse {
    /** 结果码 */
    @JsonProperty("result")
    private Integer result;
 
    /** 会话ID */
    @JsonProperty("jsession")
    private String jsession;
 
    /** 账户名称 */
    @JsonProperty("account_name")
    private String accountName;
 
    /** 会话ID */
    @JsonProperty("JSESSIONID")
    private String sessionId;
 
    public Integer getResult() {
        return result;
    }
 
    public void setResult(Integer result) {
        this.result = result;
    }
 
    public String getJsession() {
        return jsession;
    }
 
    public void setJsession(String jsession) {
        this.jsession = jsession;
    }
 
    public String getAccountName() {
        return accountName;
    }
 
    public void setAccountName(String accountName) {
        this.accountName = accountName;
    }
 
    public String getSessionId() {
        return sessionId;
    }
 
    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }