package com.artfess.application.persistence.manager;

import com.artfess.application.model.AppModel;
import com.artfess.base.manager.BaseManager;
import org.springframework.web.multipart.MultipartFile;

import java.util.List;
import java.util.Map;

/**
 * 
 * <pre> 
 * 描述：移动端应用 处理接口
 * 构建组：x7
 * 作者:pangq
 * 邮箱:pangq@jee-soft.cn
 * 日期:2020-07-06 15:23:30
 * 版权：广州宏天软件股份有限公司
 * </pre>
 */
public interface AppModelManager extends BaseManager<AppModel> {

	List<AppModel> getByTypeId(String typeId);

	Map<String,String> exportData(List<String> ids) throws Exception;

	void importData(MultipartFile file);
}
