80 lines
1.4 KiB
Plaintext
80 lines
1.4 KiB
Plaintext
package com.sercurityControl.proteam.domain;
|
|
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 人员数量统计
|
|
* @author ljl
|
|
*/
|
|
|
|
|
|
public class PersonNum extends BaseEntity {
|
|
|
|
//当前日期
|
|
private String currentDay;
|
|
|
|
//人员类型
|
|
public String personType;
|
|
|
|
//人员数量
|
|
public int personNum;
|
|
|
|
//人员类型id
|
|
private int personTypeId;
|
|
|
|
private String orgId;
|
|
|
|
|
|
private String isSup;
|
|
|
|
public String getCurrentDay() {
|
|
return currentDay;
|
|
}
|
|
|
|
public void setCurrentDay(String currentDay) {
|
|
this.currentDay = currentDay;
|
|
}
|
|
|
|
public String getPersonType() {
|
|
return personType;
|
|
}
|
|
|
|
public void setPersonType(String personType) {
|
|
this.personType = personType;
|
|
}
|
|
|
|
public int getPersonNum() {
|
|
return personNum;
|
|
}
|
|
|
|
public void setPersonNum(int personNum) {
|
|
this.personNum = personNum;
|
|
}
|
|
|
|
public int getPersonTypeId() {
|
|
return personTypeId;
|
|
}
|
|
|
|
public void setPersonTypeId(int personTypeId) {
|
|
this.personTypeId = personTypeId;
|
|
}
|
|
|
|
public String getOrgId() {
|
|
return orgId;
|
|
}
|
|
|
|
public void setOrgId(String orgId) {
|
|
this.orgId = orgId;
|
|
}
|
|
|
|
public String getIsSup() {
|
|
return isSup;
|
|
}
|
|
|
|
public void setIsSup(String isSup) {
|
|
this.isSup = isSup;
|
|
}
|
|
}
|