You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/src/com/platform/service/DataInfoService.java

42 lines
778 B

package com.platform.service;
import java.util.List;
import org.springframework.ui.ModelMap;
import com.platform.entities.DataInfoEntity;
import com.platform.form.PagerOptions;
/** 数据管理
* @author chen
*
*/
public interface DataInfoService {
/** 分页查询数据
* @param pagerOptions
* @return
*/
public ModelMap getPagerTableData(PagerOptions pagerOptions);
/** 删除数据
* @param id
* @throws Exception
*/
void deleteData(String[] id) throws Exception;
/** 删除数据
* @param ids
* @throws Exception
*/
void deleteData(List<Integer> ids) throws Exception;
/** 新增数据
* @param data
* @return
* @throws Exception
*/
int save(DataInfoEntity data) throws Exception;
}