package com.vci.server.framework.systemConfig; import java.io.Serializable; import com.vci.common.annotaion.CustomAnnotaion; import com.vci.common.objects.AbstractEntity; @CustomAnnotaion(CustomDescription = "系统配置对象") public class SystemCfg extends AbstractEntity implements Serializable { /** * */ @CustomAnnotaion(CustomDescription = "序列",InToString = false) private static final long serialVersionUID = -2773034103833060095L; @CustomAnnotaion(CustomDescription = "对象ID",InToString = false) private String id; @CustomAnnotaion(CustomDescription = "对象名称") private String name; @CustomAnnotaion(CustomDescription = "对象值") private String value; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public static long getSerialversionuid() { return serialVersionUID; } public String getId() { return id; } public void setId(String id) { this.id = id; } }