FeiShuMsgCardEventDTO.java
1.18 KB
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
package com.pipihelper.project.feishu.dto;
import lombok.Data;
import java.io.Serializable;
/**
* @Description: TODO
* @author: charles
* @date: 2022年05月31日 19:16
*/
@Data
public class FeiShuMsgCardEventDTO implements Serializable {
/**
* open_message_id : om_68847045627958c15f8393cd65f7bf2c
* tenant_key : 1120c5cd9d915758
* open_id : ou_d75bfe889720de803aea8099c7f2f837
* user_id : gf613cf5
* action : {"tag":"select_static","value":{"key":"level"},"option":"高"}
* token : c-ee8d54e0dbef055760d6f9fd171576c3930ee7cd
*/
private String open_message_id;
private String tenant_key;
private String open_id;
private String user_id;
private ActionBean action;
private String token;
@Data
public static class ActionBean{
/**
* tag : select_static
* value : {"key":"level"}
* option : 高
*/
private String tag;
private ValueBean value;
private String option;
private String timezone;
@Data
public static class ValueBean{
/**
* key : level
*/
private String key;
}
}
}