| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package jnpf.base.service;
- import jnpf.base.Page;
- import jnpf.base.entity.DataInterfaceVariateEntity;
- import java.util.List;
- import java.util.Map;
- /**
- * 数据接口业务层
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2021-03-23
- */
- public interface DataInterfaceVariateService extends SuperService<DataInterfaceVariateEntity> {
- /**
- * 列表
- * @param id
- * @param page
- * @return
- */
- List<DataInterfaceVariateEntity> getList(String id, Page page);
- /**
- * 详情
- *
- * @param id
- * @return
- */
- DataInterfaceVariateEntity getInfo(String id);
- /**
- * 判断名称是否重复
- *
- * @param entity
- * @return
- */
- boolean isExistByFullName(DataInterfaceVariateEntity entity);
- /**
- * 添加
- *
- * @param entity
- * @return
- */
- boolean create(DataInterfaceVariateEntity entity);
- /**
- * 修改
- *
- * @param entity
- * @return
- */
- boolean update(DataInterfaceVariateEntity entity);
- /**
- * 删除
- *
- * @param entity
- * @return
- */
- boolean delete(DataInterfaceVariateEntity entity);
- /**
- * 通过id获取列表
- *
- * @param ids
- * @return
- */
- List<DataInterfaceVariateEntity> getListByIds(List<String> ids);
- boolean update(Map<String, String> map, List<DataInterfaceVariateEntity> variateEntities);
- /**
- * 通过名称获取变量
- *
- * @param fullName
- */
- DataInterfaceVariateEntity getInfoByFullName(String fullName);
- }
|