SafeMessagePO.java 990 Bytes
/*
 * @(#)SafeMessagePO.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.service.railway.po;

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

/**
 * 的数据库模型.
 * @author 
 */
public class SafeMessagePO extends BasePO {

    /**
     * ,
     */
    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;
    }

}