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

com.aizuda.snailjob.server.web.model.response.NotifyRecipientResponseVO Maven / Gradle / Ivy

package com.aizuda.snailjob.server.web.model.response;

import lombok.Data;

import java.time.LocalDateTime;

/**
 * @author opensnail
 * @date 2024-04-17 21:27:07
 * @since sj_1.0.0
 */
@Data
public class NotifyRecipientResponseVO {

    private Long id;

    /**
     * 接收人名称
     */
    private String recipientName;

    /**
     * 通知类型 1、钉钉 2、邮件 3、企业微信 4 飞书
     */
    private Integer notifyType;

    /**
     * 配置属性
     */
    private String notifyAttribute;

    /**
     * 描述
     */
    private String description;

    /**
     * 创建时间
     */
    private LocalDateTime createDt;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy