Example #1
0
 public void setUserid(String userid) {
   setUserid(JavaLangUtil.StrToLong(userid, -1l));
 }
Example #2
0
 public void setUsertype(String usertype) {
   this.usertype = JavaLangUtil.StrToInteger(usertype, USER_TYPE_PERSONAL);
 }
Example #3
0
 public void setAlldeclarecount(String alldeclarecount) {
   this.alldeclarecount = JavaLangUtil.StrToInteger(alldeclarecount, 0);
 }
Example #4
0
 public void setAllnotifiercount(String allnotifiercount) {
   this.allnotifiercount = JavaLangUtil.StrToInteger(allnotifiercount, 0);
 }
Example #5
0
 public void setAllconsultcount(String allconsultcount) {
   this.allconsultcount = JavaLangUtil.StrToInteger(allconsultcount, 0);
 }
Example #6
0
 public void setNotifiercount(String notifiercount) {
   this.notifiercount = JavaLangUtil.StrToInteger(notifiercount, 0);
 }
Example #7
0
 public void setDeclarecount(String declarecount) {
   this.declarecount = JavaLangUtil.StrToInteger(declarecount, 0);
 }
Example #8
0
 public void setAuditcount(String auditcount) {
   this.auditcount = JavaLangUtil.StrToInteger(auditcount, 0);
 }
Example #9
0
 public void setConsultcount(String consultcount) {
   this.consultcount = JavaLangUtil.StrToInteger(consultcount, 0);
 }