Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

李苗 / Vion-DevOps

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Vion-DevOps
  • src
  • main
  • java
  • vion
  • vo
  • RoleVO.java
  • HlQ's avatar
    [chg] 优化 · 37a0b8bc
    HlQ committed Oct 28, 2024
    37a0b8bc
RoleVO.java 408 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package vion.vo;

import lombok.Getter;
import lombok.Setter;

import java.time.LocalDateTime;

/**
 * @author vion
 * @date 2023/11/28
 */
@Getter
@Setter
public class RoleVO {
    private Long id;
    private String name;
    private String code;
    private Integer status;
    private String remark;
    private LocalDateTime createTime;
    private LocalDateTime updateTime;

    private Long userId;
}