47 lines
721 B
Plaintext
47 lines
721 B
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
public class ProNumEntity {
|
|
|
|
private String orgId;
|
|
|
|
private String cityName;
|
|
|
|
private int num;
|
|
|
|
private int num2;
|
|
|
|
|
|
public String getOrgId() {
|
|
return orgId;
|
|
}
|
|
|
|
public void setOrgId(String orgId) {
|
|
this.orgId = orgId;
|
|
}
|
|
|
|
public String getCityName() {
|
|
return cityName;
|
|
}
|
|
|
|
public void setCityName(String cityName) {
|
|
this.cityName = cityName;
|
|
}
|
|
|
|
public int getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(int num) {
|
|
this.num = num;
|
|
}
|
|
|
|
public int getNum2() {
|
|
return num2;
|
|
}
|
|
|
|
public void setNum2(int num2) {
|
|
this.num2 = num2;
|
|
}
|
|
|
|
}
|