From 58b38fbe91937c897a70baadc11e67cbd0f32b26 Mon Sep 17 00:00:00 2001 From: zhangshuai Date: Mon, 12 Aug 2024 15:22:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=20application=20devel?= =?UTF-8?q?oper=20=E4=B8=BA=20provider?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../net/geedge/asw/module/app/entity/ApplicationEntity.java | 2 +- .../geedge/asw/module/app/entity/ApplicationLogEntity.java | 2 +- src/main/resources/db/mapper/app/ApplicationMapper.xml | 2 +- src/main/resources/db/migration/V1.0.01__INIT_TABLES.sql | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/net/geedge/asw/module/app/entity/ApplicationEntity.java b/src/main/java/net/geedge/asw/module/app/entity/ApplicationEntity.java index 5815104..217dda5 100644 --- a/src/main/java/net/geedge/asw/module/app/entity/ApplicationEntity.java +++ b/src/main/java/net/geedge/asw/module/app/entity/ApplicationEntity.java @@ -20,7 +20,7 @@ public class ApplicationEntity { private String surrogates; private String packageName; private String website; - private String developer; + private String provider; private Long createTimestamp; private Long updateTimestamp; diff --git a/src/main/java/net/geedge/asw/module/app/entity/ApplicationLogEntity.java b/src/main/java/net/geedge/asw/module/app/entity/ApplicationLogEntity.java index 6d41f95..6718169 100644 --- a/src/main/java/net/geedge/asw/module/app/entity/ApplicationLogEntity.java +++ b/src/main/java/net/geedge/asw/module/app/entity/ApplicationLogEntity.java @@ -15,7 +15,7 @@ public class ApplicationLogEntity { private String surrogates; private String packageName; private String website; - private String developer; + private String provider; private Long createTimestamp; private Long updateTimestamp; diff --git a/src/main/resources/db/mapper/app/ApplicationMapper.xml b/src/main/resources/db/mapper/app/ApplicationMapper.xml index f28f842..ad9ad2a 100644 --- a/src/main/resources/db/mapper/app/ApplicationMapper.xml +++ b/src/main/resources/db/mapper/app/ApplicationMapper.xml @@ -10,7 +10,7 @@ - + diff --git a/src/main/resources/db/migration/V1.0.01__INIT_TABLES.sql b/src/main/resources/db/migration/V1.0.01__INIT_TABLES.sql index ac15669..64094be 100644 --- a/src/main/resources/db/migration/V1.0.01__INIT_TABLES.sql +++ b/src/main/resources/db/migration/V1.0.01__INIT_TABLES.sql @@ -248,7 +248,7 @@ CREATE TABLE `application` ( `properties` text NOT NULL DEFAULT '' COMMENT '应用数据', `package_name` VARCHAR(512) NOT NULL DEFAULT '' COMMENT '包名', `website` VARCHAR(1024) NOT NULL DEFAULT '' COMMENT '网站', - `developer` VARCHAR(256) NOT NULL DEFAULT '' COMMENT '开发者', + `provider` VARCHAR(256) NOT NULL DEFAULT '' COMMENT '开发者', `description` text NOT NULL DEFAULT '' COMMENT '描述信息', `surrogates` text NOT NULL DEFAULT '' COMMENT '', `create_timestamp` bigint(20) NOT NULL COMMENT '创建时间戳', @@ -275,7 +275,7 @@ CREATE TABLE `application_log` ( `properties` text NOT NULL DEFAULT '' COMMENT '应用数据', `package_name` VARCHAR(512) NOT NULL DEFAULT '' COMMENT '包名', `website` VARCHAR(1024) NOT NULL DEFAULT '' COMMENT '网站', - `developer` VARCHAR(256) NOT NULL DEFAULT '' COMMENT '开发者', + `provider` VARCHAR(256) NOT NULL DEFAULT '' COMMENT '开发者', `description` text NOT NULL DEFAULT '' COMMENT '描述信息', `surrogates` text NOT NULL DEFAULT '' COMMENT '', `create_timestamp` bigint(20) NOT NULL COMMENT '创建时间戳',