| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.siwei.system.service;
- //import com.onemap.system.api.domain.SysDictData;
- //import com.onemap.system.domain.TYztZyml;
- import com.siwei.system.api.domain.SysDictData;
- import com.siwei.system.domain.TYztZyml;
- import java.util.List;
- /**
- * 数据资源目录Service接口
- *
- * @author onemap
- * @date 2022-12-01
- */
- public interface ITYztZymlService
- {
- /**
- * 查询数据资源目录
- *
- * @param bsm 数据资源目录主键
- * @return 数据资源目录
- */
- public TYztZyml selectTYztZymlByBsm(String bsm);
- /**
- * 查询数据资源目录列表
- *
- * @param tYztZyml 数据资源目录
- * @return 数据资源目录集合
- */
- public List<TYztZyml> selectTYztZymlList(TYztZyml tYztZyml);
- /**
- * 新增数据资源目录
- *
- * @param tYztZyml 数据资源目录
- * @return 结果
- */
- public int insertTYztZyml(TYztZyml tYztZyml);
- /**
- * 修改数据资源目录
- *
- * @param tYztZyml 数据资源目录
- * @return 结果
- */
- public int updateTYztZyml(TYztZyml tYztZyml);
- /**
- * 批量删除数据资源目录
- *
- * @param bsms 需要删除的数据资源目录主键集合
- * @return 结果
- */
- public int deleteTYztZymlByBsms(String[] bsms);
- /**
- * 删除数据资源目录信息
- *
- * @param bsm 数据资源目录主键
- * @return 结果
- */
- public int deleteTYztZymlByBsm(String bsm);
- List<SysDictData> getDbLayers();
- }
|