|
@@ -26,6 +26,8 @@ import org.springframework.data.jpa.repository.Query;
|
|
|
import org.springframework.data.repository.query.Param;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
/**
|
|
|
* @website https://el-admin.vip
|
|
|
* @author sunmz
|
|
@@ -43,4 +45,7 @@ public interface DmServicePjRepository extends JpaRepository<DmServicePj, Intege
|
|
|
|
|
|
@Query(value = "SELECT COUNT(1) FROM dm_service_pj WHERE to_days(pj_time) = to_days(now()) AND user_code = :userCode",nativeQuery = true)
|
|
|
int servicePjApp(@Param("userCode") String userCode);
|
|
|
+
|
|
|
+ @Query(value = "SELECT DISTINCT enabled FROM dm_service_pj",nativeQuery = true)
|
|
|
+ Map<String,Object> enableApp();
|
|
|
}
|