|
@@ -10,11 +10,12 @@ import java.util.Set;
|
|
|
|
|
|
/**
|
|
|
* 动态格条件Mapper接口
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
* @date 2023-07-31
|
|
|
*/
|
|
|
-public interface DragTableConditionMapper {
|
|
|
+public interface DragTableConditionMapper
|
|
|
+{
|
|
|
/**
|
|
|
* 查询动态格条件列表
|
|
|
*/
|
|
@@ -23,7 +24,7 @@ public interface DragTableConditionMapper {
|
|
|
/**
|
|
|
* 新增动态格条件
|
|
|
*/
|
|
|
- int insertDragTableCondition(@Param("fieldNames") Set<String> fieldNames, @Param("fieldValues") List<Map<String, Object>> fieldValues);
|
|
|
+ int insertDragTableCondition(@Param("fieldNames") Set<String> fieldNames,@Param("fieldValues") List<Map<String, Object>> fieldValues);
|
|
|
|
|
|
/**
|
|
|
* 修改动态格条件
|
|
@@ -32,7 +33,7 @@ public interface DragTableConditionMapper {
|
|
|
|
|
|
/**
|
|
|
* 批量删除动态格条件
|
|
|
- *
|
|
|
+ *
|
|
|
* @param tcIds 需要删除的数据主键集合
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -44,5 +45,5 @@ public interface DragTableConditionMapper {
|
|
|
* @param tId 动态格条件主键
|
|
|
* @return 动态格条件
|
|
|
*/
|
|
|
- List<Map<String,Object>> selectDragTableConditionByTid(Long tId);
|
|
|
+ List<DragTableCondition> selectDragTableConditionByTid(Long tId);
|
|
|
}
|