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

com.higgschain.trust.slave.model.bo.config.SystemProperty Maven / Gradle / Ivy

package com.higgschain.trust.slave.model.bo.config;

import com.higgschain.trust.slave.model.bo.BaseBO;
import lombok.Getter;
import lombok.Setter;

import java.util.Date;

/**
 * The type System property.
 *
 * @author lingchao
 * @create 2018年06月27日15 :58
 */
@Setter
@Getter
public class SystemProperty  extends BaseBO {

    /**
     * property key
     */
    private String key;
    /**
     *  property value
     */
    private String value;
    /**
     * desc for the property
     */
    private String desc;
    /**
     * the create time
     */
    private Date createTime;
    /**
     * the update time
     */
    private Date updateTime;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy