rightvo.java

来自「该代码是一个销售管理系统的源代码」· Java 代码 · 共 85 行

JAVA
85
字号
package com.domain;

public class RightVO {
    /*=============数据库中表tb_right============*/
  private Integer rt_id; //数据库流水号
  private Byte rt_code; //基本信息设置
  private Byte rt_date; //基础资料设置
  private Byte rt_operation; //业务管理设置
  private Byte rt_forms; //报表中心设置

  private Byte rt_tool; //辅助工具设置
  private Byte rt_right; //系统管理设置
  private String rt_number;//员工外键信息
  public RightVO() {}

  public Integer getRt_id() {
    return rt_id;
  }

  public Byte getRt_code() {
    return rt_code;
  }

  public Byte getRt_date() {
    return rt_date;
  }

  public Byte getRt_operation() {
    return rt_operation;
  }

  public Byte getRt_forms() {
    return rt_forms;
  }



  public Byte getRt_tool() {
    return rt_tool;
  }

  public Byte getRt_right() {
    return rt_right;
  }

  public String getRt_number() {
    return rt_number;
  }

  public void setRt_id(Integer rt_id) {
    this.rt_id = rt_id;
  }

  public void setRt_code(Byte rt_code) {
    this.rt_code = rt_code;
  }

  public void setRt_date(Byte rt_date) {
    this.rt_date = rt_date;
  }

  public void setRt_operation(Byte rt_operation) {
    this.rt_operation = rt_operation;
  }

  public void setRt_forms(Byte rt_forms) {
    this.rt_forms = rt_forms;
  }



  public void setRt_tool(Byte rt_tool) {
    this.rt_tool = rt_tool;
  }

  public void setRt_right(Byte rt_right) {
    this.rt_right = rt_right;
  }

  public void setRt_number(String rt_number) {
    this.rt_number = rt_number;
  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?