| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /**
- *
- */
- package cn.com.lzt.dbquery.dto;
- /**
- * @author xzx
- *
- * 2019年7月31日
- *
- */
- public class DbQueryUserByEduDto {
- /**
- * 项目管理处id
- */
- private String pid;
- /**
- * 项目名称
- */
- private String departname;
-
- /**
- * 总人数
- */
- private int total;
- /**
- * 未知
- */
- private int unknownCount;
- /**
- * 无学历
- */
- private int wuxueliCount;
- /**
- * 小学
- */
- private int xiaoxueCount;
- /**
- * 初中
- */
- private int chuzhongCount;
- /**
- * 高中
- */
- private int gaozhongCount;
- /**
- * 大专
- */
- private int dazhuanCount;
- /**
- * 本科
- */
- private int benkeCount;
- /**
- * 硕士
- */
- private int shuoshiCount;
- /**
- * 博士
- */
- private int boshiCount;
-
- public int getUnknownCount() {
- return unknownCount;
- }
- public void setUnknownCount(int unknownCount) {
- this.unknownCount = unknownCount;
- }
- public int getWuxueliCount() {
- return wuxueliCount;
- }
- public void setWuxueliCount(int wuxueliCount) {
- this.wuxueliCount = wuxueliCount;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getDepartname() {
- return departname;
- }
- public void setDepartname(String departname) {
- this.departname = departname;
- }
- public int getXiaoxueCount() {
- return xiaoxueCount;
- }
- public void setXiaoxueCount(int xiaoxueCount) {
- this.xiaoxueCount = xiaoxueCount;
- }
- public int getChuzhongCount() {
- return chuzhongCount;
- }
- public void setChuzhongCount(int chuzhongCount) {
- this.chuzhongCount = chuzhongCount;
- }
- public int getGaozhongCount() {
- return gaozhongCount;
- }
- public void setGaozhongCount(int gaozhongCount) {
- this.gaozhongCount = gaozhongCount;
- }
- public int getDazhuanCount() {
- return dazhuanCount;
- }
- public void setDazhuanCount(int dazhuanCount) {
- this.dazhuanCount = dazhuanCount;
- }
- public int getBenkeCount() {
- return benkeCount;
- }
- public void setBenkeCount(int benkeCount) {
- this.benkeCount = benkeCount;
- }
- public int getShuoshiCount() {
- return shuoshiCount;
- }
- public void setShuoshiCount(int shuoshiCount) {
- this.shuoshiCount = shuoshiCount;
- }
- public int getBoshiCount() {
- return boshiCount;
- }
- public void setBoshiCount(int boshiCount) {
- this.boshiCount = boshiCount;
- }
- public int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
-
-
-
- }
|