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

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

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

import lombok.Data;

import java.time.LocalDateTime;
import java.util.List;

/**
 * @author opensnail
 * @date 2022-03-05
 * @since 2.0
 */
@Data
public class SystemUserResponseVO {

    private Long id;

    private String username;

    private Integer role;

    private List groupNameList;

    private List namespaceIds;

    private List permissions;

    private String token;

    private LocalDateTime createDt;

    private LocalDateTime updateDt;

    private String mode;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy