All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mg.common.metadata.dao.MirrorPropertyDao Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.mg.common.metadata.dao;

import com.mg.framework.entity.metadata.MObjectEntity;
import com.mg.framework.entity.metadata.MirrorPropertyEntity;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.querydsl.QueryDslPredicateExecutor;

import java.util.List;

/**
 * Created by liukefu on 2015/8/20.
 */

public interface MirrorPropertyDao extends
        JpaRepository,
        QueryDslPredicateExecutor {

        public List findByRootMObjectAndPropertyPath(MObjectEntity rootMObject, String propertyPath);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy