* @param userId 用户Id
*/
public void save(String procDefKey,String procInstId
,String bizKey,String bizName,String userId ){
ProcessAttribute pa = new ProcessAttribute();
pa.setActProcDefKey(procDefKey);
pa.setActProcInstId(procInstId);
pa.setBizKey(bizKey);
pa.setBizName(bizName);
pa.setOwner(userId);
pa.setCreatedTime(Calendar.getInstance());
dao.create(pa);
}