Package com.thinkgem.jeesite.modules.oa.dao

Source Code of com.thinkgem.jeesite.modules.oa.dao.LeaveDao

/**
* There are <a href="https://github.com/thinkgem/jeesite">JeeSite</a> code generation
*/
package com.thinkgem.jeesite.modules.oa.dao;

import org.springframework.stereotype.Repository;

import com.thinkgem.jeesite.common.persistence.BaseDao;
import com.thinkgem.jeesite.common.persistence.Parameter;
import com.thinkgem.jeesite.modules.oa.entity.Leave;

/**
* 请假DAO接口
* @author liuj
* @version 2013-8-23
*/
@Repository
public class LeaveDao extends BaseDao<Leave> {
 
  public int updateProcessInstanceId(String id,String processInstanceId){
    return update("update Leave set processInstanceId=:p1 where id = :p2", new Parameter(processInstanceId, id));
  }
 
}
TOP

Related Classes of com.thinkgem.jeesite.modules.oa.dao.LeaveDao

TOP
Copyright © 2018 www.massapi.com. 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.