mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 #3603【企业微信】获取审批申请详情接口 增加说明文字控件的支持
This commit is contained in:
parent
4d66dd09ca
commit
96a5cc995b
@ -34,6 +34,9 @@ public class ContentValue implements Serializable {
|
|||||||
|
|
||||||
private List<ContentValue.Department> departments;
|
private List<ContentValue.Department> departments;
|
||||||
|
|
||||||
|
@SerializedName("new_tips")
|
||||||
|
private NewTips newTips;
|
||||||
|
|
||||||
private List<ContentValue.File> files;
|
private List<ContentValue.File> files;
|
||||||
|
|
||||||
private List<ContentValue.Child> children;
|
private List<ContentValue.Child> children;
|
||||||
@ -114,6 +117,68 @@ public class ContentValue implements Serializable {
|
|||||||
private String name;
|
private String name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type Tips.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public static class NewTips implements Serializable {
|
||||||
|
private static final long serialVersionUID = 1094978100200056100L;
|
||||||
|
@SerializedName("tips_content")
|
||||||
|
private List<TipsContent> tipsContent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type tips_content.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public static class TipsContent implements Serializable {
|
||||||
|
private static final long serialVersionUID = 559432801311084797L;
|
||||||
|
@SerializedName("text")
|
||||||
|
private Text text;
|
||||||
|
private String lang;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type sub_text.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public static class Text implements Serializable {
|
||||||
|
private static final long serialVersionUID = -70174360931158924L;
|
||||||
|
@SerializedName("sub_text")
|
||||||
|
private List<SubText> subText;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type sub_text.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public static class SubText implements Serializable {
|
||||||
|
private static final long serialVersionUID = -8226911175438019317L;
|
||||||
|
private Integer type;
|
||||||
|
private Content content;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class Content implements Serializable {
|
||||||
|
private static final long serialVersionUID = -6813250009451940525L;
|
||||||
|
@SerializedName("plain_text")
|
||||||
|
private PlainText plainText;
|
||||||
|
private Link link;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class PlainText implements Serializable {
|
||||||
|
private static final long serialVersionUID = -599377674188314118L;
|
||||||
|
private String content;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class Link implements Serializable {
|
||||||
|
private static final long serialVersionUID = 2784173996170990308L;
|
||||||
|
private String title;
|
||||||
|
private String url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type File.
|
* The type File.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user