com.hn.robot.dingtalk.domain.Link Maven / Gradle / Ivy
package com.hn.robot.dingtalk.domain;
import lombok.Data;
/**
* 描述: link类型
*
* @author fei
*/
@Data
public class Link {
/**
* 消息内容。如果太长只会部分展示
*/
private String text;
/**
* 消息标题
*/
private String title;
/**
* 点击消息跳转的URL
*/
private String messageUrl;
/**
* 图片URL
*/
private String picUrl;
public Link(String title, String messageUrl, String picUrl) {
this.title = title;
this.messageUrl = messageUrl;
this.picUrl = picUrl;
}
public Link() {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy