📄 hnsybpropuser.java
字号:
/*
* Created on 2004-8-27
*
* This Class is part of HengNgai Jewelry Group(Panyu)'s Product
*
*/
package com.hnjchina.securityManager;
/**
* @author fm
*
*
*
*/
public class HnSybPropUser extends PropUser{
public int priority;
public int status;
public HnSybPropUser(){
super();
priority = 0;
status = 0;
}
public HnSybPropUser(HnSybPropUser user){
super(user);
this.priority = user.priority;
this.status = user.status;
}
public String toString(){
String rc = super.toString();
if (userID > 0){
rc += ",priority = " + priority +"," +
"status = " + status;
}
return rc;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -