public class leve {
    private int leveNo;
    private int strLength;
    private int strTimes;
    private int timeLimit;
    private int perScore;
    
    public leve(int leveNo, int strLength, int strTimes, int timeLimit,
            int perScore) {
        super();
        this.leveNo = leveNo;
        this.strLength = strLength;
        this.strTimes = strTimes;
        this.timeLimit = timeLimit;
        this.perScore = perScore;
    }
    public leve() {
        super();
    }
    public int getLeveNo() {
        return leveNo;
    }
    public void setLeveNo(int leveNo) {
        this.leveNo = leveNo;
    }
    public int getStrLength() {
        return strLength;
    }
    public void setStrLength(int strLength) {
        this.strLength = strLength;
    }
    public int getStrTimes() {
        return strTimes;
    }
    public void setStrTimes(int strTimes) {
        this.strTimes = strTimes;
    }
    public int getTimeLimit() {
        return timeLimit;
    }
    public void setTimeLimit(int timeLimit) {
        this.timeLimit = timeLimit;
    }
    public int getPerScore() {
        return perScore;
    }
    public void setPerScore(int perScore) {
        this.perScore = perScore;
    }
    
}
Leve

相关文章:

  • 2022-12-23
  • 2021-12-01
  • 2021-05-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
猜你喜欢
  • 2022-01-05
  • 2021-09-11
  • 2021-08-21
  • 2021-10-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案