summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResUserInfo.java
blob: 2556c6877cb7f37a60c5d6cfb7984c0226703692 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
	}
}