mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 13:32:18 +08:00
@@ -3,3 +3,9 @@ ALTER TABLE `core_dataset_table_field`
|
||||
|
||||
ALTER TABLE `core_dataset_table_field`
|
||||
ADD COLUMN `other_group` longtext NULL;
|
||||
|
||||
|
||||
alter table `per_data_filling_task_sub_instance`
|
||||
modify `data_id` varchar(255) null comment '数据ID';
|
||||
alter table per_data_filling_commit_log
|
||||
modify `data_id` varchar(255) not null comment '操作的数据ID';
|
||||
|
||||
@@ -10,3 +10,5 @@ DROP PRIMARY KEY;
|
||||
|
||||
alter table `per_data_filling_task_sub_instance`
|
||||
modify `data_id` varchar(255) null comment '数据ID';
|
||||
alter table per_data_filling_commit_log
|
||||
modify `data_id` varchar(255) not null comment '操作的数据ID';
|
||||
|
||||
@@ -68,7 +68,7 @@ public interface DataFillingApi {
|
||||
|
||||
@DePermit({"#p0+':manage'"})
|
||||
@GetMapping("/form/{formId}/delete/{id}")
|
||||
void deleteRowData(@PathVariable("formId") Long formId, @PathVariable("id") Long id) throws Exception;
|
||||
void deleteRowData(@PathVariable("formId") Long formId, @PathVariable("id") String id) throws Exception;
|
||||
|
||||
@DePermit({"#p0+':manage'"})
|
||||
@GetMapping("/form/{formId}/truncate")
|
||||
@@ -76,7 +76,7 @@ public interface DataFillingApi {
|
||||
|
||||
@DePermit({"#p0+':manage'"})
|
||||
@PostMapping("/form/{formId}/batch-delete")
|
||||
void batchDeleteRowData(@PathVariable("formId") Long formId, @RequestBody List<Long> ids) throws Exception;
|
||||
void batchDeleteRowData(@PathVariable("formId") Long formId, @RequestBody List<String> ids) throws Exception;
|
||||
|
||||
@DePermit({"#p0+':manage'"})
|
||||
@PostMapping("/form/{formId}/rowData/save")
|
||||
|
||||
@@ -15,7 +15,7 @@ public class RowDataDatum implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = -2838784450721979776L;
|
||||
|
||||
private Long id;
|
||||
private String id;
|
||||
|
||||
private Map<String, Object> data;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user