From 893b5b1477a99dd618efbbda67b5a860ddf2977e Mon Sep 17 00:00:00 2001 From: fuxiao <576101059@qq.com> Date: Tue, 7 May 2024 20:35:05 +0800 Subject: [PATCH] upgrade version to go1.19 --- example/dao/internal/counter.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/dao/internal/counter.go b/example/dao/internal/counter.go index 1bfc24d..e220cd4 100755 --- a/example/dao/internal/counter.go +++ b/example/dao/internal/counter.go @@ -1,6 +1,6 @@ // -------------------------------------------------------------------------------------------------- // The following code is automatically generated by the mongo-dao-generator tool. -// Please do not modify this code manually to avoid being overwritten in the next generation. +// Please do not modify this code manually to avoid being overwritten in the next generation. // For more tool details, please click the link to view https://github.com/dobyte/mongo-dao-generator // -------------------------------------------------------------------------------------------------- @@ -21,8 +21,8 @@ type Counter struct { } type CounterModel struct { - ID string `bson:"_id"` - Value int64 `bson:"value"` + ID string `bson:"_id"` + Value int64 `bson:"value"` } type CounterColumns struct {