SafeMessage.java 984 Bytes
/*
 * @(#)SafeMessage.java
 *
 * Copyright (c) 2014-2017   版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.railway.domain;

import com.xiniunet.framework.base.BaseDomain;
import java.util.Date;

/**
 * 实体对象.
 * @author 
 */
public class SafeMessage extends BaseDomain {

    /**
     * 
     */
    private Long id;

    /**
     * 
     */
    private String description;

    public Long getId() {
        return id;
    }

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

    public String getDescription() {
        return description;
    }

    public void setDescription(String  description) {
        this.description = description;
    }

}