All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.attemper.alarm.ContentEntity Maven / Gradle / Ivy

package com.github.attemper.alarm;

public class ContentEntity {

    /**
     * 文本内容,最长不超过2048个字节,必须是utf8编码
* 非空 */ protected String content; public String getContent() { return content; } public ContentEntity setContent(String content) { this.content = content; return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy