summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResUserInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/Piztor/src/com/macaroon/piztor/ResUserInfo.java')
-rw-r--r--client/Piztor/src/com/macaroon/piztor/ResUserInfo.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/client/Piztor/src/com/macaroon/piztor/ResUserInfo.java b/client/Piztor/src/com/macaroon/piztor/ResUserInfo.java
new file mode 100644
index 0000000..2556c68
--- /dev/null
+++ b/client/Piztor/src/com/macaroon/piztor/ResUserInfo.java
@@ -0,0 +1,22 @@
+package com.macaroon.piztor;
+
+
+//--------------------------------------//
+// Respond to User Info //
+//--------------------------------------//
+
+public class ResUserInfo extends Res{
+ int uid; //userid
+ int company; //group id
+ int section;
+ int sex; //type 0 for female,type 1 for male
+
+
+ ResUserInfo(int status,int u,int com,int sec,int s){
+ super(3,status); //for type 3
+ uid = u;
+ company = com;
+ section = sec;
+ sex =s;
+ }
+} \ No newline at end of file