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

com.nbsaas.boot.system.api.domain.response.RoleResponse Maven / Gradle / Ivy

There is a newer version: 1.1.5-2024
Show newest version
package com.nbsaas.boot.system.api.domain.response;

import lombok.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* 响应对象
*/
@Getter
@Setter
@ToString(callSuper = true)
public class RoleResponse  implements Serializable {
/**
* 序列化参数
*/
private static final long serialVersionUID = 1L;


        /**
        * 角色名称
        **/
            private String name;

        /**
        * 角色描述
        **/
            private String remark;

        /**
        * 主键id
        **/
            private Long id;

        /**
        * 添加时间
        **/
            private Date addDate;

        /**
        * 最新修改时间
        **/
            private Date lastDate;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy