/** * Project: doris.config.server-1.0-SNAPSHOT * * File Created at 2011-4-27 * $Id$ * * Copyright 1999-2100 Alibaba.com Corporation Limited. * All rights reserved. * * This software is the confidential and proprietary information of * Alibaba Company. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Alibaba.com. */ package com.alibaba.doris.admin.dataobject; import java.util.Date; /** * @author mianhe */ public class RouterConfigInstanceDO { private int id; private Date gmtCreate; private String content; /** * @return the id */ public int getId() { return id; } /** * @param id the id to set */ public void setId(int id) { this.id = id; } /** * @return the gmtCreate */ public Date getGmtCreate() { return gmtCreate; } /** * @param gmtCreate the gmtCreate to set */ public void setGmtCreate(Date gmtCreate) { this.gmtCreate = gmtCreate; } /** * @return the content */ public String getContent() { return content; } /** * @param content the content to set */ public void setContent(String content) { this.content = content; } }