49 lines
955 B
Plaintext
49 lines
955 B
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 当前登陆用户基本信息
|
|
*/
|
|
public class BasicEntity implements Serializable {
|
|
|
|
/**
|
|
* 当前登陆用户id
|
|
*/
|
|
private String currentUserId;
|
|
|
|
/**
|
|
* 1.管理员 2.值班员 3.地市人员
|
|
*/
|
|
private String isSup;
|
|
|
|
/**
|
|
*当前用户所属地市
|
|
*/
|
|
private String currentUserOrgId;
|
|
|
|
public String getCurrentUserId() {
|
|
return currentUserId;
|
|
}
|
|
|
|
public void setCurrentUserId(String currentUserId) {
|
|
this.currentUserId = currentUserId;
|
|
}
|
|
|
|
public String getIsSup() {
|
|
return isSup;
|
|
}
|
|
|
|
public void setIsSup(String isSup) {
|
|
this.isSup = isSup;
|
|
}
|
|
|
|
public String getCurrentUserOrgId() {
|
|
return currentUserOrgId;
|
|
}
|
|
|
|
public void setCurrentUserOrgId(String currentUserOrgId) {
|
|
this.currentUserOrgId = currentUserOrgId;
|
|
}
|
|
}
|