15 lines
349 B
Go
15 lines
349 B
Go
package model
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type UserSignInLogSignIn struct {
|
|
UserId int64 `json:"userId"`
|
|
RuleId int64 `json:"ruleId"`
|
|
RewardDetailId int64 `json:"rewardDetailId"`
|
|
SignInDate *gtime.Time `json:"signInDate"`
|
|
}
|
|
|
|
type UserSignInLogSignOut struct {
|
|
Success bool `json:"success"`
|
|
}
|