IJobResultMapper.java
423 Bytes
package com.yoho.jobs.dal;
/**
*
*/
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yoho.jobs.dal.domain.ProcessResultVO;
/**
* @author yanzhang.fu
*
*/
public interface IJobResultMapper {
public void insertJob(ProcessResultVO jobResult);
public List<ProcessResultVO> selectJobs(@Param("jobName") String jobName, @Param("module") String module,
@Param("limit") int limit);
}