lmw
2023-06-13 4b7d8d9a038f6522df46d0f14fa07eb940a1b34d
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
package com.kuanzhai.driver.bean;
 
import java.util.List;
 
public class EventHistoryBean {
 
    /**
     * code : 200
     * data : [{"carryOut":1,"time":"2020.06.15"}]
     * msg : SUCCESS
     */
 
    private int code;
    private String msg;
    private List<DataBean> data;
 
    public int getCode() {
        return code;
    }
 
    public void setCode(int code) {
        this.code = code;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String msg) {
        this.msg = msg;
    }
 
    public List<DataBean> getData() {
        return data;
    }
 
    public void setData(List<DataBean> data) {
        this.data = data;
    }
 
    public static class DataBean {
        /**
         * carryOut : 1
         * time : 2020.06.15
         */
 
        private int carryOut;
        private String time;
        private int id;
 
        public int getId() {
            return id;
        }
 
        public void setId(int id) {
            this.id = id;
        }
 
        public int getCarryOut() {
            return carryOut;
        }
 
        public void setCarryOut(int carryOut) {
            this.carryOut = carryOut;
        }
 
        public String getTime() {
            return time;
        }
 
        public void setTime(String time) {
            this.time = time;
        }
 
        public String getCarryOutStr(){
            if (carryOut == 1){
                return "未完成";
            }else {
                return "已完成";
            }
        }
    }
}