Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-user
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenweijian
hilo-user
Commits
eb7ea01b
Commit
eb7ea01b
authored
Jun 14, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:利用last_remind_time
parent
8c40c987
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
anniversary.go
domain/model/cp_m/anniversary.go
+20
-20
No files found.
domain/model/cp_m/anniversary.go
View file @
eb7ea01b
...
@@ -21,7 +21,7 @@ type CpAnniversary struct {
...
@@ -21,7 +21,7 @@ type CpAnniversary struct {
Content
string
Content
string
Timestamp
int64
Timestamp
int64
IsRemind
bool
IsRemind
bool
Reminded
mysql
.
YesNo
LastRemindTime
int64
Sort
int
Sort
int
}
}
...
@@ -77,7 +77,7 @@ func AddCpAnniversary(model *domain.Model, Type cp_e.AnniversaryItemType, cp CpR
...
@@ -77,7 +77,7 @@ func AddCpAnniversary(model *domain.Model, Type cp_e.AnniversaryItemType, cp CpR
Content
:
content
,
Content
:
content
,
Timestamp
:
ts
,
Timestamp
:
ts
,
IsRemind
:
isRemind
,
IsRemind
:
isRemind
,
Reminded
:
mysql
.
NO
,
LastRemindTime
:
0
,
Sort
:
sort
,
Sort
:
sort
,
})
.
Error
})
.
Error
}
}
...
@@ -116,7 +116,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
...
@@ -116,7 +116,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
Where
(
"`timestamp` >= ?"
,
time
.
Now
()
.
Unix
()
-
86400
)
.
Where
(
"`timestamp` >= ?"
,
time
.
Now
()
.
Unix
()
-
86400
)
.
Where
(
"`timestamp` < ?"
,
time
.
Now
()
.
Unix
())
.
Where
(
"`timestamp` < ?"
,
time
.
Now
()
.
Unix
())
.
Where
(
"is_remind = 1"
)
.
Where
(
"is_remind = 1"
)
.
Where
(
"
reminded = ?"
,
mysql
.
NO
)
.
Where
(
"
last_remind_time < ?"
,
time
.
Now
()
.
AddDate
(
-
1
,
0
,
0
)
.
Unix
())
.
// 一年前提醒过
Find
(
&
res
)
.
Error
;
err
!=
nil
{
Find
(
&
res
)
.
Error
;
err
!=
nil
{
model
.
Log
.
Errorf
(
"GetNeedRemindCpAnniversary fail:%v"
,
err
)
model
.
Log
.
Errorf
(
"GetNeedRemindCpAnniversary fail:%v"
,
err
)
}
}
...
@@ -138,5 +138,5 @@ func GetUserTodayCpAnniversary(model *domain.Model, cpId mysql.ID) []CpAnniversa
...
@@ -138,5 +138,5 @@ func GetUserTodayCpAnniversary(model *domain.Model, cpId mysql.ID) []CpAnniversa
}
}
func
UpdateCpAnniversaryReminded
(
model
*
domain
.
Model
,
id
mysql
.
ID
)
error
{
func
UpdateCpAnniversaryReminded
(
model
*
domain
.
Model
,
id
mysql
.
ID
)
error
{
return
model
.
DB
()
.
Model
(
CpAnniversary
{})
.
Where
(
"id = ?"
,
id
)
.
Update
(
"
reminded"
,
mysql
.
YES
)
.
Error
return
model
.
DB
()
.
Model
(
CpAnniversary
{})
.
Where
(
"id = ?"
,
id
)
.
Update
(
"
last_remind_time"
,
time
.
Now
()
.
Unix
()
)
.
Error
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment