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

com.jdcloud.sdk.service.dcap.model.AppStatistics Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 JDCLOUD.COM
 *
 * Licensed 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.
 *
 * 
 * 
 *
 * 
 * Contact: 
 *
 * NOTE: This class is auto generated by the jdcloud code generator program.
 */

package com.jdcloud.sdk.service.dcap.model;


/**
 * appStatistics
 */
public class AppStatistics  implements java.io.Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * 应用的UUID
     */
    private String appUuid;

    /**
     * 应用地址
     */
    private String appAddr;

    /**
     * 加密量
     */
    private Integer encryptDataCount;


    /**
     * get 应用的UUID
     *
     * @return
     */
    public String getAppUuid() {
        return appUuid;
    }

    /**
     * set 应用的UUID
     *
     * @param appUuid
     */
    public void setAppUuid(String appUuid) {
        this.appUuid = appUuid;
    }

    /**
     * get 应用地址
     *
     * @return
     */
    public String getAppAddr() {
        return appAddr;
    }

    /**
     * set 应用地址
     *
     * @param appAddr
     */
    public void setAppAddr(String appAddr) {
        this.appAddr = appAddr;
    }

    /**
     * get 加密量
     *
     * @return
     */
    public Integer getEncryptDataCount() {
        return encryptDataCount;
    }

    /**
     * set 加密量
     *
     * @param encryptDataCount
     */
    public void setEncryptDataCount(Integer encryptDataCount) {
        this.encryptDataCount = encryptDataCount;
    }


    /**
     * set 应用的UUID
     *
     * @param appUuid
     */
    public AppStatistics appUuid(String appUuid) {
        this.appUuid = appUuid;
        return this;
    }

    /**
     * set 应用地址
     *
     * @param appAddr
     */
    public AppStatistics appAddr(String appAddr) {
        this.appAddr = appAddr;
        return this;
    }

    /**
     * set 加密量
     *
     * @param encryptDataCount
     */
    public AppStatistics encryptDataCount(Integer encryptDataCount) {
        this.encryptDataCount = encryptDataCount;
        return this;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy