/**
* http://surenpi.com
*/
package org.suren.autotest.platform.model;
/**
* @author suren
* @date 2017年1月20日 下午7:48:14
*/
public class ProjectFoucs
{
private String id;
private String projectId;
private String userId;
/**
* @return the id
*/
public String getId()
{
return id;
}
/**
* @param id the id to set
*/
public void setId(String id)
{
this.id = id;
}
/**
* @return the projectId
*/
public String getProjectId()
{
return projectId;
}
/**
* @param projectId the projectId to set
*/
public void setProjectId(String projectId)
{
this.projectId = projectId;
}
/**
* @return the userId
*/
public String getUserId()
{
return userId;
}
/**
* @param userId the userId to set
*/
public void setUserId(String userId)
{
this.userId = userId;
}
}