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

com.mg.common.metadata.service.MFavoritesService Maven / Gradle / Ivy

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

import com.mg.framework.entity.metadata.MFavoritesEntity;

import java.util.List;

/**
 * Created by liukefu on 2015/10/2.
 */
public interface MFavoritesService {
    List findAllFavorites(String mainObjId);

    MFavoritesEntity findById(String id);

    MFavoritesEntity saveFavorites(MFavoritesEntity favoritesEntity, String objId);

    int deleteById(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy