| | |
| | | package com.vci.frameworkcore.pagemodel; |
| | | import com.vci.common.annotaion.CustomAnnotaion; |
| | | import com.vci.starter.web.pagemodel.BaseModelVO; |
| | | |
| | | import java.util.Date; |
| | |
| | | * 用户姓名 |
| | | */ |
| | | private String name; |
| | | |
| | | |
| | | /** |
| | | * 用户类型 |
| | |
| | | /** |
| | | * 性别 |
| | | */ |
| | | |
| | | private String sex; |
| | | |
| | | /** |
| | |
| | | * 头像 |
| | | */ |
| | | private String photo; |
| | | |
| | | /** |
| | | * 是否是部门领导标识 1:是 0:不是 |
| | | */ |
| | | private String isDeptLeader = "0"; |
| | | |
| | | /** |
| | | * 专业 |
| | | */ |
| | | private String specialties; |
| | | |
| | | public void setSpecialties(String specialties) { |
| | | this.specialties = specialties; |
| | | } |
| | | |
| | | public String getSpecialties() { |
| | | return specialties; |
| | | } |
| | | |
| | | @Override |
| | | public String getId() { |
| | |
| | | this.photo = photo; |
| | | } |
| | | |
| | | public void setIsDeptLeader(String isDeptLeader) { |
| | | this.isDeptLeader = isDeptLeader; |
| | | } |
| | | |
| | | public String getIsDeptLeader() { |
| | | return isDeptLeader; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "SmUserVO{" + |