| | |
| | | import com.ycl.platform.domain.entity.DynamicColumn; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.entity.DynamicColumnValue; |
| | | import com.ycl.platform.domain.query.DynamicColumnQuery; |
| | | import com.ycl.platform.domain.vo.DynamicColumnVO; |
| | | import com.ycl.platform.domain.form.DynamicColumnForm; |
| | |
| | | DynamicColumnVO getById(Integer id); |
| | | |
| | | /** |
| | | * 获取动态列数据 |
| | | * @param |
| | | * @return |
| | | */ |
| | | List<DynamicColumnVO> getData(); |
| | | |
| | | List<String> getHeader(String tableName); |
| | | /** |
| | | * 分页 |
| | | */ |
| | | IPage getPage(IPage page, @Param("query") DynamicColumnQuery query); |
| | | |
| | | void saveBatch( @Param("insertList") List<DynamicColumnValue> insertList); |
| | | |
| | | void updateBatch( @Param("updateList") List<DynamicColumnValue> updateList); |
| | | |
| | | } |