All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.dolphinscheduler.dao.entity.K8sNamespace Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.dolphinscheduler.dao.entity;

import java.util.Date;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;

/**
 * k8s namespace
 */
@TableName("t_ds_k8s_namespace")
public class K8sNamespace {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;

    /**
     * namespace name
     */
    @TableField(value = "namespace")
    private String namespace;

    /**
     * total cpu limit
     */
    @TableField(value = "limits_cpu")
    private Double limitsCpu;

    /**
     * total memory limit,mi
     */
    private Integer limitsMemory;

    /**
     * owner
     */
    @TableField(value = "user_id")
    private int userId;

    /**
     * user name
     */
    @TableField(exist = false)
    private String userName;

    /**
     * create_time
     */
    @TableField("create_time")
    private Date createTime;

    /**
     * update_time
     */
    @TableField("update_time")
    private Date updateTime;

    /**
     * 1.00 = 1 cpu
     */
    @TableField("pod_request_cpu")
    private Double podRequestCpu = 0.0;

    /**
     * Mi
     */
    @TableField("pod_request_memory")
    private Integer podRequestMemory = 0;

    /**
     * replicas
     */
    @TableField("pod_replicas")
    private Integer podReplicas = 0;

    /**
     * online job
     */
    @TableField("online_job_num")
    private Integer onlineJobNum = 0;

    /**
     * k8s name
     */
    @TableField("k8s")
    private String k8s;

    public Integer getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getNamespace() {
        return namespace;
    }

    public void setNamespace(String namespace) {
        this.namespace = namespace;
    }

    public Double getLimitsCpu() {
        return limitsCpu;
    }

    public void setLimitsCpu(Double limitsCpu) {
        this.limitsCpu = limitsCpu;
    }

    public Integer getLimitsMemory() {
        return limitsMemory;
    }

    public void setLimitsMemory(Integer limitsMemory) {
        this.limitsMemory = limitsMemory;
    }

    public int getUserId() {
        return userId;
    }

    public void setUserId(int userId) {
        this.userId = userId;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    public Date getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    public Integer getPodRequestMemory() {
        return podRequestMemory;
    }

    public void setPodRequestMemory(Integer podRequestMemory) {
        this.podRequestMemory = podRequestMemory;
    }

    public Integer getPodReplicas() {
        return podReplicas;
    }

    public void setPodReplicas(Integer podReplicas) {
        this.podReplicas = podReplicas;
    }

    public Integer getOnlineJobNum() {
        return onlineJobNum;
    }

    public void setOnlineJobNum(Integer onlineJobNum) {
        this.onlineJobNum = onlineJobNum;
    }

    public String getK8s() {
        return k8s;
    }

    public void setK8s(String k8s) {
        this.k8s = k8s;
    }

    public Double getPodRequestCpu() {
        return podRequestCpu;
    }

    public void setPodRequestCpu(Double podRequestCpu) {
        this.podRequestCpu = podRequestCpu;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    @Override
    public String toString() {
        return "K8sNamespace{" +
            "id=" + id +
            ", namespace=" + namespace +
            ", limitsCpu=" + limitsCpu +
            ", limitsMemory=" + limitsMemory +
            ", userId=" + userId +
            ", podRequestCpu=" + podRequestCpu +
            ", podRequestMemory=" + podRequestMemory +
            ", podReplicas=" + podReplicas +
            ", k8s=" + k8s +
            ", createTime=" + createTime +
            ", updateTime=" + updateTime +
            '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        K8sNamespace k8sNamespace = (K8sNamespace) o;

        if (id.equals(k8sNamespace.id)) {
            return true;
        }

        return namespace.equals(k8sNamespace.namespace) && k8s.equals(k8sNamespace.k8s);
    }

    @Override
    public int hashCode() {
        int result = id;
        result = 31 * result + (k8s+namespace).hashCode();
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy