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.
19 lines
479 B
19 lines
479 B
package jinjieti1;
|
|
|
|
/**
|
|
* 图书馆分馆类
|
|
*/
|
|
public class BranchLibrary {
|
|
private String branchId; // 分馆ID
|
|
private String name; // 分馆名称
|
|
private String location; // 位置
|
|
|
|
public BranchLibrary(String branchId, String name, String location) {
|
|
this.branchId = branchId;
|
|
this.name = name;
|
|
this.location = location;
|
|
}
|
|
|
|
// getter
|
|
public String getName() { return name; }
|
|
} |