8012bff975bf001c1f64ee89f3b08a66

来自「基于Java实现的聊天室功能」· 代码 · 共 113 行

TXT
113
字号
package liuyan;

public class LiuyanBean {
	private String id;
	private String name;
	private String sex;
	private String comefrom;
	private String lianxi;
	private String qq;
	private String email;
	private String zhuye;
	private String other;
	private String bq;
	private String title;
	private String content;
	
	public void setId(String id){
		this.id = id;
	}
	
	public void setName(String name){
		this.name = name;
	}
	
	public void setSex(String sex){
		this.sex = sex;
	}
	
	public void setComefrom(String comefrom){
		this.comefrom = comefrom;
	}
	
	public void setLianxi(String lianxi){
		this.lianxi = lianxi;
	}
	
	public void setQQ(String qq){
		this.qq = qq;
	}
	
	public void setEmail(String email){
		this.email = email;
	}
	
	public void setZhuye(String zhuye){
		this.zhuye = zhuye;
	}
	
	public void setOther(String other){
		this.other = other;
	}
	
	public void setBq(String bq){
		this.bq = bq;
	}
	
	public void setTitle(String title){
		this.title = title;
	}
	
	public void setContent(String content){
		this.content = content;
	}
	
	public String getId(){
		return this.id;
	}
	
	public String getName(){
		return this.name;
	}
	
	public String getSex(){
		return this.sex;
	}
	
	public String getComefrom(){
		return this.comefrom;
	}
	
	public String getLianxi(){
		return this.lianxi;
	}
	
	public String getQQ(){
		return this.qq;
	}
	
	public String getEmail(){
		return this.email;
	}
	
	public String getZhuye(){
		return this.zhuye;
	}
	
	public String getOther(){
		return this.other;
	}
	
	public String getBq(){
		return this.bq;
	}
	
	public String getTitle(){
		return this.title;
	}
	
	public String getContent(){
		return this.content;
	}
}

⌨️ 快捷键说明

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