net.guerlab.smart.notify.web.excel.MailLogExcelExport Maven / Gradle / Ivy
/*
* Copyright 2018-2021 guerlab.net and other contributors.
*
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.guerlab.smart.notify.web.excel;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 邮件记录
*
* @author guer
*/
@Data
public class MailLogExcelExport {
/**
* 邮件记录ID
*/
@ExcelProperty(value = "邮件记录ID", index = 0)
private Long mailLogId;
/**
* 模板Key
*/
@ExcelProperty(value = "模板Key", index = 1)
private String templateKey;
/**
* 收件人
*/
@ExcelProperty(value = "收件人", index = 2)
private String receive;
/**
* 主题
*/
@ExcelProperty(value = "主题", index = 3)
private String subject;
/**
* 内容
*/
@ExcelProperty(value = "内容", index = 4)
private String content;
/**
* 发送时间
*/
@ExcelProperty(value = "发送时间", index = 5)
private LocalDateTime sendTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy