xin
2025-04-15 8342e6a5ed78fc007c45609507f0a914c43fec4d
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.oying.modules.maint.domain;
 
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.bean.copier.CopyOptions;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
import com.oying.base.BaseEntity;
 
import java.io.Serializable;
import java.util.Objects;
 
/**
* @author Z
* @date 2019-08-24
*/
@Getter
@Setter
@TableName("mnt_server")
public class Server extends BaseEntity implements Serializable {
 
    @TableId(value = "server_id", type = IdType.AUTO)
    @ApiModelProperty(value = "ID", hidden = true)
    private Long id;
 
    @ApiModelProperty(value = "服务器名称")
    private String name;
 
    @ApiModelProperty(value = "IP")
    private String ip;
 
    @ApiModelProperty(value = "端口")
    private Integer port;
 
    @ApiModelProperty(value = "账号")
    private String account;
 
    @ApiModelProperty(value = "密码")
    private String password;
 
    public void copy(Server source){
        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
    }
 
    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Server that = (Server) o;
        return Objects.equals(id, that.id) &&
                Objects.equals(name, that.name);
    }
 
    @Override
    public int hashCode() {
        return Objects.hash(id, name);
    }
}