邮件日志查询
This commit is contained in:
parent
4ce59064bc
commit
c882681cc3
|
@ -0,0 +1,22 @@
|
|||
package net.maku.system.query;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import net.maku.framework.common.query.Query;
|
||||
|
||||
/**
|
||||
* 邮件日志查询
|
||||
*
|
||||
* @author 阿沐 babamu@126.com
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Schema(description = "邮件日志查询")
|
||||
public class SysMailLogQuery extends Query {
|
||||
@Schema(description = "发送人邮箱")
|
||||
private String mailFrom;
|
||||
|
||||
@Schema(description = "平台类型")
|
||||
private Integer platform;
|
||||
}
|
Loading…
Reference in New Issue
Block a user