Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Admin.java
Package: shihua.rar [view]
Upload User: zghglow
Upload Date: 2022-08-09
Package Size: 27227k
Code Size: 2k
Category:
WEB(ASP,PHP,...)
Development Platform:
JavaScript
- package com.chinacannel.entity;
- import java.io.*;
- import java.util.*;
- import org.apache.commons.lang.builder.*;
- public class Admin implements Serializable {
- private static final long serialVersionUID = 1;
- private Long adm_ID;
- private String adm_Name;
- private String adm_Pwd;
- private Role role;
- private Date adm_Time;
- public boolean equals(Object other) {
- if (!(other instanceof Admin))
- return false;
- Admin castOther = (Admin) other;
- return new EqualsBuilder()
- .append(this.getAdm_ID(), castOther.getAdm_ID())
- .isEquals();
- }
- public int hashCode() {
- return new HashCodeBuilder()
- .append(getAdm_ID())
- .toHashCode();
- }
- public Long getAdm_ID() {
- return adm_ID;
- }
- public String getAdm_Name() {
- return adm_Name;
- }
- public String getAdm_Pwd() {
- return adm_Pwd;
- }
- public Role getRole() {
- return role;
- }
- public Date getAdm_Time() {
- return adm_Time;
- }
- public void setAdm_ID(Long adm_ID) {
- this.adm_ID = adm_ID;
- }
- public void setAdm_Name(String adm_Name) {
- this.adm_Name = adm_Name;
- }
- public void setAdm_Pwd(String adm_Pwd) {
- this.adm_Pwd = adm_Pwd;
- }
- public void setRole(Role role) {
- this.role = role;
- }
- public void setAdm_Time(Date adm_Time) {
- this.adm_Time = adm_Time;
- }
- }