You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
464 B
27 lines
464 B
package com.WR.StudentMS.model;
|
|
|
|
public class ZhuanyeWR {
|
|
private int id;
|
|
private String name;
|
|
private String jieshao;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getJieshao() {
|
|
return jieshao;
|
|
}
|
|
public void setJieshao(String jieshao) {
|
|
this.jieshao = jieshao;
|
|
}
|
|
}
|