From 01b578825682b2e3fab36c809014bd66ea2a8cc0 Mon Sep 17 00:00:00 2001 From: lihongjie0209 Date: Tue, 9 Jan 2024 14:37:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=A4=A9=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/CoalWashingMonthReportEntity.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/cn/lihongjie/coal/coalWashingMonthReport/entity/CoalWashingMonthReportEntity.java b/src/main/java/cn/lihongjie/coal/coalWashingMonthReport/entity/CoalWashingMonthReportEntity.java index c548db21..0077dd53 100644 --- a/src/main/java/cn/lihongjie/coal/coalWashingMonthReport/entity/CoalWashingMonthReportEntity.java +++ b/src/main/java/cn/lihongjie/coal/coalWashingMonthReport/entity/CoalWashingMonthReportEntity.java @@ -17,7 +17,8 @@ import java.time.LocalDate; @Subselect(""" -select d.organization_id, +select gen_random_uuid()::text as id, + d.organization_id, d.name, '' as code, '' as remarks, @@ -35,6 +36,7 @@ select d.organization_id, 2) as remark3, date_trunc('month', d.date) as create_time, date_trunc('month', d.date) as update_time, + '' as remark4, '' as create_user_id, '' as update_user_id, null as file_ids,