nilupeng
2022-08-11 5479c528b0ce8f210ef71898a026f662f4275f08
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.runt.open.mvvm.data;
 
import com.runt.open.mvvm.ui.login.UserBean;
 
import java.text.SimpleDateFormat;
import java.util.Date;
 
/**
 * My father is Object, ites purpose of
 *
 * @purpose Created by Runt (qingingrunt2010@qq.com) on 2020-9-17.
 */
public class Results {
 
    public static class StringApiResult extends HttpApiResult<String> { }
 
    //短信验证码
    public static class SmsResult { public String sms; }
 
    //资讯信息
    public class Message {
        public String id,title,content,cTime,cUName,cId;
    }
 
    //版本更新
    public class ApkVersion{
        public long id,code;
        public String version,detail,access;
    }
 
    //金币记录
    public class CustomCoin{
        public String id;
        public UserBean toUser,fromUser;
        public int count,after,before,type;
        public Date cTime;
        /**
         * 备注
         **/
        public Object remark;
    }
 
 
    public static class Mycalendar {
 
        String day;
        int style;
        long dateTime;
        public String getDay() {
            return day;
        }
 
        public void setDay(String day) {
            this.day = day;
        }
 
        public int getStyle() {
            return style;
        }
 
        public void setStyle(int style) {
            this.style = style;
        }
 
        public long getDateTime() {
            return dateTime;
        }
 
        public void setDateTime(long dateTime) {
            this.dateTime = dateTime;
        }
 
        SimpleDateFormat datesdf = new SimpleDateFormat("yyyy-MM-dd");
        @Override
        public String toString() {
            return "Mycalendar{" +
                    "day='" + day + '\'' +
                    ", style=" + style +
                    ", dateTime=" + datesdf.format(new Date(dateTime)) +
                    '}';
        }
    }
}