com.mg.common.metadata.dao.MObjectDaoCustom Maven / Gradle / Ivy
package com.mg.common.metadata.dao;
import com.mg.framework.entity.metadata.MObjectEntity;
import java.util.List;
import java.util.Map;
public interface MObjectDaoCustom {
/**
* 获取员工的元数据对象
* @return
*/
public MObjectEntity findEmployeeMObject(List names);
public List findPageList(Map map);
public Long findCount(Map map) ;
/**
* 根据名称查询元数据对象
* @return
*/
public MObjectEntity findMObjectByName(String name);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy