| | |
| | | import com.ycl.platform.domain.entity.DynamicColumn; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.platform.domain.form.DynamicColumnForm; |
| | | import com.ycl.platform.domain.query.DynamicColumnQuery; |
| | | import com.ycl.system.Result; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | /** |
| | | * 修改 |
| | | * @param form |
| | | * @return |
| | | * |
| | | * @param columnList |
| | | */ |
| | | Result update(DynamicColumnForm form); |
| | | |
| | | /** |
| | | * 批量删除 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | Result remove(List<String> ids); |
| | | Result update(List<DynamicColumnForm> columnList); |
| | | |
| | | /** |
| | | * id删除 |
| | |
| | | * @return |
| | | */ |
| | | Result removeById(String id); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | Result page(DynamicColumnQuery query); |
| | | |
| | | /** |
| | | * 根据id查找 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Result detail(Integer id); |
| | | |
| | | /** |
| | | * 列表 |