Interface JobChangeDao
-
- All Superinterfaces:
Repository
public interface JobChangeDao extends Repository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbatchDelete(Collection<Integer> ids)voiddelete(Integer jobId)IntegerfindById(Integer id)根据id 查找Integerinsert(Integer id)List<Integer>searchChangeJobs()
-
-
-
Method Detail
-
findById
@Search("select count(*) from Y9_DATASERVICE_JOB_CHANGE where ID = ?") Integer findById(Integer id)
根据id 查找- Parameters:
id-- Returns:
-
searchChangeJobs
@Search(" select ID from Y9_DATASERVICE_JOB_CHANGE ") List<Integer> searchChangeJobs()
-
batchDelete
@Modify("delete from Y9_DATASERVICE_JOB_CHANGE where ID in (?1)") void batchDelete(Collection<Integer> ids)
-
-