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

org.macrocloud.kernel.mf.service.MacroService Maven / Gradle / Ivy

package org.macrocloud.kernel.mf.service;


import javax.validation.constraints.NotEmpty;

import com.mybatisflex.core.service.IService;

import java.util.List;

/**
 * 基础业务接口
 *
 * @param 
 */
public interface MacroService extends IService {

	/**
	 * 逻辑删除
	 *
	 * @param ids id集合
	 * @return
	 */
	boolean deleteLogic(@NotEmpty List ids);

	/**
	 * 变更状态
	 *
	 * @param ids    id集合
	 * @param status 状态值
	 * @return
	 */
	boolean changeStatus(@NotEmpty List ids, Integer status);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy