|
@@ -1,8 +1,14 @@
|
|
|
package com.xt.jygl.ggfwxxgl.jdjc.dao;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import org.springframework.data.jpa.repository.Query;
|
|
|
+
|
|
|
import com.xt.jygl.ggfwxxgl.jdjc.entity.JdjcEntity;
|
|
|
import com.xtframe.sec.common.SecRepository;
|
|
|
|
|
|
public interface JdjcDao extends SecRepository<JdjcEntity, String> {
|
|
|
|
|
|
+ @Query("SELECT m FROM JdjcEntity m WHERE m.flowflag =?1 and m.isflag = 0 and m.recordStatus <> 9 ")
|
|
|
+ public List<JdjcEntity> findByFlowflag(String flowflag );
|
|
|
}
|