package org.jeecg.modules.system.vo; import lombok.Data; /** * @author clown * * @date 2023/12/19 */ @Data public class SysLogTypeObjectDto { /** * 系统名称 */ private String systemName = "MDC"; /** * 时间 */ private String dateTime; /** * 地点 */ private String location = "成发工业园"; /** * 类型 Info/error */ private String types = "info"; /** * 文件序号 */ private String fileNum; /** * 文件名 */ private String fileName; /** * 文件大小 */ private String fileSize; /** * 业务系统ip */ private String address = "10.118.10.62"; /** * 文件摘要 */ private String abstract1; /** * 源地址 */ private String sourceAddress; /** * 目的地址 */ private String destination; /** * 结果 */ private String result; }