// // ProjectMember.m // Coding_iOS // // Created by 王 原闯 on 14-8-16. // Copyright (c) 2014年 Coding. All rights reserved. // #import "ProjectMember.h" @implementation ProjectMember + (ProjectMember *)member_All{ ProjectMember *mem = [[ProjectMember alloc] init]; mem.user_id = [NSNumber numberWithInteger:-1]; mem.user = nil; return mem; } - (NSString *)toQuitPath{ return [NSString stringWithFormat:@"api/project/%d/quit", _project_id.intValue]; } - (NSString *)toKickoutPath{ return [NSString stringWithFormat:@"api/project/%@/kickout/%@", _project_id.stringValue, _user_id.stringValue]; } @end