|
@@ -6,6 +6,7 @@ import com.mooctest.crowd.domain.model.UserPO;
|
|
|
import lombok.Data;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
|
+import java.sql.Date;
|
|
|
import java.sql.Timestamp;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -29,13 +30,17 @@ public class User {
|
|
|
private int isAvailable;
|
|
|
private int isDeleted;
|
|
|
private Timestamp createTime;
|
|
|
+ private Date birthday;
|
|
|
+ private String personalCompetence;
|
|
|
+ private String unit;
|
|
|
+ private String county;
|
|
|
+ private List<Role> roleList;
|
|
|
|
|
|
private RegionalManager regionalManager;
|
|
|
private EvaluationAgency evaluationAgency;
|
|
|
private PersonalAuthentication personalAuthentication;
|
|
|
private EnterpriseAuthentication enterpriseAuthentication;
|
|
|
private SystemAdministratorToUser systemAdministratorToUser;
|
|
|
- private List<Role> roleList;
|
|
|
|
|
|
|
|
|
public User() {
|