Package com.google.code.lightssh.project.workflow.entity

Examples of com.google.code.lightssh.project.workflow.entity.ProcessAttribute


   * @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);
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.workflow.entity.ProcessAttribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.