package com.moral.api.pojo.vo.manageLog; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; import java.util.List; /** * @ClassName ManageLogVO * @Description TODO * @Author 陈凯裕 * @Date 2021/4/12 16:31 * @Version TODO **/ @Data @JsonInclude(JsonInclude.Include.NON_EMPTY) public class ManageLogVO { /* * 账号 * */ private String account; /* * 用户名 * */ private String userName; /* * 操作类型 * */ private String type; /* * 操作人员ip * */ private String ip; /* * 操作时间 * */ private String createTime; /* * 操作内容 * */ private List content; }