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.

25 lines
464 B

package com.community.pocket.entity.po.android;
//废品管理员信息
public class GarbageWasteManage {
//管理员名
private String name;
//联系电话
private String mobie;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMobie() {
return mobie;
}
public void setMobie(String mobie) {
this.mobie = mobie;
}
}