package com.northglass.repository;
|
|
import java.util.Date;
|
import java.util.List;
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.Modifying;
|
import org.springframework.data.jpa.repository.Query;
|
|
import com.northglass.entity.DongZuoTable;
|
import com.northglass.entity.GalssTaskDetails;;;
|
|
public interface DongZuoTableDao extends JpaRepository<DongZuoTable, Long>{
|
|
/*@Query("select t from RawPackage t where t.fileName = '052-123' and t.fileUrl = '1' and t.state = '已下发' and t.operator = '1' and t.createTime = '2021-09-22 13:22:18' and t.receiveTime = '2021-09-22 13:22:21' ")
|
public List<RawPackage> findMachineDispose();*/
|
|
|
@Query("select t.note from DongZuoTable t")
|
public List<DongZuoTable> findall();
|
|
|
}
|