|
@@ -8,8 +8,6 @@ import com.ruoyi.common.annotation.Excel.Type;
|
|
|
import com.ruoyi.common.annotation.Excels;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
import com.ruoyi.common.xss.Xss;
|
|
|
-import lombok.Getter;
|
|
|
-import lombok.Setter;
|
|
|
|
|
|
import javax.validation.constraints.Email;
|
|
|
import javax.validation.constraints.NotBlank;
|
|
@@ -23,8 +21,6 @@ import java.util.List;
|
|
|
*
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
-@Getter
|
|
|
-@Setter
|
|
|
public class SysUser extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@@ -193,9 +189,26 @@ public class SysUser extends BaseEntity {
|
|
|
|
|
|
private Long companyId;
|
|
|
|
|
|
+ private
|
|
|
@TableField(exist = false)
|
|
|
List<String> deptNameList;
|
|
|
|
|
|
+ public List<String> getDeptNameList() {
|
|
|
+ return deptNameList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeptNameList(List<String> deptNameList) {
|
|
|
+ this.deptNameList = deptNameList;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Long getCompanyId() {
|
|
|
+ return companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyId(Long companyId) {
|
|
|
+ this.companyId = companyId;
|
|
|
+ }
|
|
|
|
|
|
public SysUser() {
|
|
|
|