|
|
@ -237,4 +237,19 @@ public interface BaseRepository <T, ID extends Serializable> extends JpaReposito
|
|
|
|
public int updateValidStatusByProperty(String propName, Object propValue,int status,String username);
|
|
|
|
public int updateValidStatusByProperty(String propName, Object propValue,int status,String username);
|
|
|
|
public int updateValidStatusByPropertyIn(String propName, Object[] propValues,int status,String username);
|
|
|
|
public int updateValidStatusByPropertyIn(String propName, Object[] propValues,int status,String username);
|
|
|
|
public int updateValidStatusByProperties(String[] propNames, Object[] objValues,int status,String username);
|
|
|
|
public int updateValidStatusByProperties(String[] propNames, Object[] objValues,int status,String username);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByProperty(String propertyName, Object value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByProperty(String[] propertyNames, Object[] values);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByHqlWhere(String hqlWhere,String[] propertyNames, Object[] values);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByHqlWhere(String hqlWhere);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByHql(String hql);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitByHql(String hql,String[] paramName,Object[] paramValue);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isExitBySql(String sql);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|