zxl
23 小时以前 3b0516a2959e25576e4f3fda697a3b025d06c8c9
ycl-server/src/main/java/com/ycl/platform/mapper/DynamicColumnMapper.java
@@ -3,6 +3,7 @@
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;
@@ -33,10 +34,20 @@
     */
    List<DynamicColumnVO> getData();
    List<DynamicColumnVO> getDynamicsByIds(@Param("tableName")String tableName,@Param("ids") List<Integer> ids);
    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);
    void deleteBatch(@Param("deleteList") List<Integer> deleteList);
    List<DynamicColumnVO> getDynamicColumnByTable(@Param("tableName")String tableName,@Param("id")String id);
    List<DynamicColumnVO> getDynamicColumnByTableName(@Param("tableName")String tableName);
}