diff --git a/frontend/src/components/about.vue b/frontend/src/components/about.vue
index efff180..692f93a 100644
--- a/frontend/src/components/about.vue
+++ b/frontend/src/components/about.vue
@@ -117,6 +117,8 @@ EventsOn("updateVersion",async (msg) => {
一个热爱编程的小白,欢迎关注我的Github
+
+
开源不易,如果觉得好用,可以请作者喝杯咖啡。
diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts
index 0d1d09d..0c25fec 100644
--- a/frontend/wailsjs/go/models.ts
+++ b/frontend/wailsjs/go/models.ts
@@ -100,6 +100,7 @@ export namespace data {
netEstimatedUnit?: number;
netEstimatedUnitTime: string;
netAccumulated?: number;
+ netEstimatedRate?: number;
fundBasic: FundBasic;
static createFrom(source: any = {}) {
@@ -119,6 +120,7 @@ export namespace data {
this.netEstimatedUnit = source["netEstimatedUnit"];
this.netEstimatedUnitTime = source["netEstimatedUnitTime"];
this.netAccumulated = source["netAccumulated"];
+ this.netEstimatedRate = source["netEstimatedRate"];
this.fundBasic = this.convertValues(source["fundBasic"], FundBasic);
}