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

📄 complaininfo.java

📁 基于struts、spring、hibernate的网上订餐系统
💻 JAVA
字号:
package com.xaccp.po;

public class ComplainInfo  implements java.io.Serializable {


    // Fields    

     private Integer ciId;
     private String ciIdea;
     private UserInfo userInfo;


    // Constructors

	/** default constructor */
    public ComplainInfo() {
    }

	/** minimal constructor */
    public ComplainInfo(Integer ciId) {
        this.ciId = ciId;
    }
    
    /** full constructor */
    public ComplainInfo(Integer ciId, String ciIdea, UserInfo userInfo) {
		super();
		this.ciId = ciId;
		this.ciIdea = ciIdea;
		this.userInfo = userInfo;
	}

   
    // Property accessors

    public Integer getCiId() {
        return this.ciId;
    }
    
    public void setCiId(Integer ciId) {
        this.ciId = ciId;
    }

    public String getCiIdea() {
        return this.ciIdea;
    }
    
    public void setCiIdea(String ciIdea) {
        this.ciIdea = ciIdea;
    }

	public UserInfo getUserInfo() {
		return userInfo;
	}

	public void setUserInfo(UserInfo userInfo) {
		this.userInfo = userInfo;
	}
}

⌨️ 快捷键说明

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