yangys
2024-03-29 410eed616ce86a76ecfbd272be0a4463ac54a517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.qianwen.smartman.modules.sync.entity;
 
import cn.hutool.core.util.StrUtil;
import com.jeecg.qywx.api.user.vo.User;
import java.util.Objects;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/QyUser.class */
public class QyUser extends User {
    private String biz_mail;
    private String main_department;
 
    public void setBiz_mail(final String biz_mail) {
        this.biz_mail = biz_mail;
    }
 
    public void setMain_department(final String main_department) {
        this.main_department = main_department;
    }
 
    public String toString() {
        return "QyUser(biz_mail=" + getBiz_mail() + ", main_department=" + getMain_department() + ")";
    }
 
    public String getBiz_mail() {
        return this.biz_mail;
    }
 
    public String getMain_department() {
        return this.main_department;
    }
 
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        QyUser qyUser = (QyUser) o;
        return StrUtil.equals(qyUser.getUserid(), getUserid());
    }
 
    public int hashCode() {
        return Objects.hash(getUserid());
    }
}