⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 observerprofile.java

📁 provide a room booking system
💻 JAVA
字号:
/*
 * ObserverProfile.java
 *
 * Created on January 23, 2007, 11:40 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package Wearnes;

/**
 *
 * @author dongliang.guo
 */
public class ObserverProfile {
    public int requestID;
     public String process_status="";
    public String observerName="";
    public String observerDate="";
    public String observerApprove="";
    public String observerComment="";
   
   
    /** Creates a new instance of ObserverProfile */
    public ObserverProfile(int req_id,String status,String n,String d,String a,String comment)
    {
        
        observerName=n;
        observerDate=d;
        observerApprove=a;
        observerComment=comment;
        requestID=req_id;
        process_status=status;
        
        
    }
    
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -