- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
Users.java
资源名称:S2SH.rar [点击查看]
上传用户:greengl
上传日期:2017-12-31
资源大小:13653k
文件大小:2k
源码类别:
Ajax
开发平台:
Java
- package com.entity;
- /**
- * Users generated by MyEclipse - Hibernate Tools
- */
- public class Users implements java.io.Serializable {
- // Fields
- private Integer userId;
- private String userName;
- private String password;
- private Integer status;
- private String email;
- // Constructors
- /** default constructor */
- public Users() {
- }
- /** minimal constructor */
- public Users(String userName, String password, Integer status) {
- this.userName = userName;
- this.password = password;
- this.status = status;
- }
- /** full constructor */
- public Users(String userName, String password, Integer status, String email) {
- this.userName = userName;
- this.password = password;
- this.status = status;
- this.email = email;
- }
- // Property accessors
- public Integer getUserId() {
- return this.userId;
- }
- public void setUserId(Integer userId) {
- this.userId = userId;
- }
- public String getUserName() {
- return this.userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getPassword() {
- return this.password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- public Integer getStatus() {
- return this.status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getEmail() {
- return this.email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- }