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

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

The newest version!
package com.mg.common.metadata.dao;

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

import java.util.List;

/**
 * Created by liukefu on 2015/10/2.
 */
public interface MSqlDao extends
        JpaRepository,
        QueryDslPredicateExecutor {

    List findByNameOrderBySortAsc(String name);

    List findByCategoryNameOrderBySortAsc(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy