score.java

来自「css+Ajax技术实现学员分数查看的功能」· Java 代码 · 共 73 行

JAVA
73
字号
package com.accp.teem.server.entity ;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: 北大青鸟ACCP软件制作</p>
 *
 * @author 廖启全
 * @version 1.0
 */
public class Score
{
  private int id;
  private String name;
  private float java;
  private float net;
  private float js;

  public int getId()
  {
    return id ;
  }

  public float getJava()
  {
    return java ;
  }

  public float getJs()
  {
    return js ;
  }

  public String getName()
  {
    return name ;
  }

  public float getNet()
  {
    return net ;
  }

  public void setId(int id)
  {
    this.id = id ;
  }

  public void setJava(float java)
  {
    this.java = java ;
  }

  public void setJs(float js)
  {
    this.js = js ;
  }

  public void setName(String name)
  {
    this.name = name ;
  }

  public void setNet(float net)
  {
    this.net = net ;
  }
}

⌨️ 快捷键说明

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