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

📄 userface.java

📁 新技术论坛系统 v1.0 前后台管理的初始用户名 : admin 密码 123456
💻 JAVA
字号:
package com.ntsky.bbs.domain;

import java.util.List;
import java.util.Set;

/**
 * 表情持久化类
 * 
 * @author ntsky
 * @link www.ntsky.com
 */
public class UserFace extends Entity{

	private String name;
	private String path;
	private int type;
	
	private List userFaces;	
	
	public List getUserFaces() {
		return userFaces;
	}
	public void setUserFaces(List userFaces) {
		this.userFaces = userFaces;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPath() {
		return path;
	}
	public void setPath(String path) {
		this.path = path;
	}
	public int getType() {
		return type;
	}
	public void setType(int type) {
		this.type = type;
	}
	
}

⌨️ 快捷键说明

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