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
5bd48b32
Commit
5bd48b32
authored
Jun 16, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat
parent
1b4382ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
anniversary.go
domain/model/cp_m/anniversary.go
+4
-2
No files found.
domain/model/cp_m/anniversary.go
View file @
5bd48b32
...
...
@@ -113,6 +113,7 @@ func GetAllCpAnniversary(model *domain.Model, userId mysql.ID) []CpAnniversary {
func
GetNeedRemindCpAnniversary
(
model
*
domain
.
Model
)
[]
CpAnniversary
{
var
rows
,
res
[]
CpAnniversary
if
err
:=
model
.
DB
()
.
Model
(
CpAnniversary
{})
.
Where
(
"`timestamp` > 0"
)
.
Where
(
"`timestamp` < ?"
,
time
.
Now
()
.
Unix
())
.
Where
(
"is_remind = 1"
)
.
Where
(
"last_remind_time < ?"
,
time
.
Now
()
.
AddDate
(
-
1
,
0
,
0
)
.
Unix
())
.
// 一年前提醒过
...
...
@@ -122,7 +123,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
now
:=
time
.
Now
()
.
Unix
()
for
i
,
v
:=
range
rows
{
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
if
now
>
ts
&&
now
-
ts
<=
86400
{
if
now
>
ts
{
res
=
append
(
res
,
rows
[
i
])
}
}
...
...
@@ -133,6 +134,7 @@ func GetNeedRemindCpAnniversary(model *domain.Model) []CpAnniversary {
func
GetUserTodayCpAnniversary
(
model
*
domain
.
Model
,
cpId
mysql
.
ID
)
[]
CpAnniversary
{
var
rows
,
res
[]
CpAnniversary
if
err
:=
model
.
DB
()
.
Model
(
CpAnniversary
{})
.
Where
(
"`timestamp` > 0"
)
.
Where
(
"`timestamp` < ?"
,
time
.
Now
()
.
Unix
())
.
Where
(
"is_remind = 1"
)
.
Where
(
"cp_id = ?"
,
cpId
)
.
...
...
@@ -142,7 +144,7 @@ func GetUserTodayCpAnniversary(model *domain.Model, cpId mysql.ID) []CpAnniversa
now
:=
time
.
Now
()
.
Unix
()
for
i
,
v
:=
range
rows
{
ts
:=
CalcNextAnniversary
(
v
.
Timestamp
)
if
now
>
ts
&&
now
-
ts
<=
86400
{
if
now
>
ts
{
res
=
append
(
res
,
rows
[
i
])
}
}
...
...
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