1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.ruoyi.gen.service;
- import java.util.List;
- import com.ruoyi.gen.domain.GenTableColumn;
- /**
- * 业务字段 服务层
- *
- * @author ruoyi
- */
- public interface IGenTableColumnService
- {
- /**
- * 查询业务字段列表
- *
- * @param tableId 业务字段编号
- * @return 业务字段集合
- */
- public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId);
- /**
- * 新增业务字段
- *
- * @param genTableColumn 业务字段信息
- * @return 结果
- */
- public int insertGenTableColumn(GenTableColumn genTableColumn);
- /**
- * 修改业务字段
- *
- * @param genTableColumn 业务字段信息
- * @return 结果
- */
- public int updateGenTableColumn(GenTableColumn genTableColumn);
- /**
- * 删除业务字段信息
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- public int deleteGenTableColumnByIds(String ids);
- }
|