TestAuditDao.java
643 字节
/**
*
*/
package com.thinkgem.jeesite.modules.oa.dao;
import com.thinkgem.jeesite.common.persistence.CrudDao;
import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
import com.thinkgem.jeesite.modules.oa.entity.TestAudit;
/**
* 审批DAO接口
* @author thinkgem
* @version 2014-05-16
*/
@MyBatisDao
public interface TestAuditDao extends CrudDao<TestAudit> {
public TestAudit getByProcInsId(String procInsId);
public int updateInsId(TestAudit testAudit);
public int updateHrText(TestAudit testAudit);
public int updateLeadText(TestAudit testAudit);
public int updateMainLeadText(TestAudit testAudit);
}