domain

package
v0.0.0-...-f664ad0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 22, 2024 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	UnderReview uint8 = iota
	Approved
	UnApproved
)
View Source
const (
	LotteryStatusPending   string = "pending"   // 待开始
	LotteryStatusActive    string = "active"    // 进行中
	LotteryStatusCompleted string = "completed" // 已完成
)
View Source
const (
	SecondKillStatusPending   string = "pending"   // 待开始
	SecondKillStatusActive    string = "active"    // 进行中
	SecondKillStatusCompleted string = "completed" // 已完成
)
View Source
const (
	Draft     uint8 = iota // 0: 草稿状态
	Published              // 1: 发布状态
	Withdrawn              // 2: 撤回状态
	Deleted                // 3: 删除状态
)

Variables

View Source
var ErrNotFound = errors.New("record not found")

Functions

This section is empty.

Types

type AsyncSms

type AsyncSms struct {
	Id       int64
	TplId    string
	Args     []string
	Numbers  []string
	RetryMax int
}

type Check

type Check struct {
	ID        int64  // 审核ID
	PostID    uint   // 帖子ID
	Content   string // 审核内容
	Title     string // 审核标签
	UserID    int64  // 提交审核的用户ID
	Status    uint8  // 审核状态
	Remark    string // 审核备注
	CreatedAt int64  // 创建时间
	UpdatedAt int64  // 更新时间
}

type Comment

type Comment struct {
	Id            int64
	UserId        int64
	Biz           string
	BizId         int64
	PostId        int64
	Content       string
	RootComment   *Comment  // 根节点
	ParentComment *Comment  // 父节点
	Children      []Comment // 子节点
	CreatedAt     int64
	UpdatedAt     int64
}

type History

type History struct {
	ID       int64
	PostID   uint
	Title    string
	Content  string
	AuthorID int64
	Tags     string
}

History represents a record of actions performed on a post.

type Interactive

type Interactive struct {
	BizID        uint
	ReadCount    int64
	LikeCount    int64
	CollectCount int64
	Liked        bool
	Collected    bool
}

func (*Interactive) IncrementCollectCount

func (i *Interactive) IncrementCollectCount()

func (*Interactive) IncrementLikeCount

func (i *Interactive) IncrementLikeCount()

func (*Interactive) IncrementReadCount

func (i *Interactive) IncrementReadCount()

type Job

type Job struct {
	Id         int64  // 任务的唯一标识符
	Name       string // 任务名称
	Expression string // Cron 表达式,用于定义任务的调度时间
	Executor   string // 执行任务的执行器名称
	Cfg        string // 任务配置,可以是任意字符串
	CancelFunc func() // 用于取消任务的函数
}

func (*Job) NextTime

func (j *Job) NextTime() (time.Time, error)

NextTime 计算任务的下次执行时间

type LotteryDraw

type LotteryDraw struct {
	ID           int           // 抽奖活动的唯一标识符
	Name         string        // 抽奖活动名称
	Description  string        // 抽奖活动描述
	StartTime    int64         // UNIX 时间戳,表示活动开始时间
	EndTime      int64         // UNIX 时间戳,表示活动结束时间
	Status       string        // 抽奖活动状态
	Participants []Participant // 参与者列表
}

LotteryDraw 表示一个抽奖活动

type Pagination

type Pagination struct {
	Page int    // 当前页码
	Size *int64 // 每页数据
	Uid  int64
	// 以下字段通常在服务端内部使用,不需要客户端传递
	Offset *int64 // 数据偏移量
	Total  *int64 // 总数据量
}

type Participant

type Participant struct {
	ID             string // 参与记录的唯一标识符
	LotteryID      *int   // 关联的活动ID(可以是抽奖或秒杀活动)
	SecondKillID   *int
	ActivityType   string
	UserID         int64 // 参与者的用户ID
	ParticipatedAt int64 // UNIX 时间戳,表示参与时间
}

Participant 表示参与者的记录,适用于抽奖和秒杀活动

type Permission

type Permission struct {
	Id    int64
	Ptype string
	V0    string
	V1    string
	V2    string
	V3    string
	V4    string
	V5    string
}

Permission 表示分配给用户的权限

type Plate

type Plate struct {
	ID          int64  // 板块ID
	Name        string // 板块名称
	Description string // 板块描述
	Uid         int64  // 操作人
	CreatedAt   int64  // 创建时间
	UpdatedAt   int64  // 更新时间
	DeletedAt   int64  // 删除时间
	Deleted     bool   // 删除状态
}

type Post

type Post struct {
	ID           uint
	Title        string
	Content      string
	CreatedAt    time.Time
	UpdatedAt    time.Time
	DeletedAt    sql.NullTime
	AuthorID     int64
	Status       uint8
	Visibility   string
	PlateID      int64
	Slug         string
	CategoryID   int64
	Tags         string
	CommentCount int64
}

func (Post) Abstract

func (p Post) Abstract() string

type PostSearch

type PostSearch struct {
	Id      uint
	Title   string
	Status  uint8
	Content string
	Tags    []string
}

type Profile

type Profile struct {
	ID       int64  // 资料ID,主键
	UserID   int64  // 用户ID,外键,关联到用户
	NickName string // 昵称
	Avatar   string // 头像URL
	About    string // 个人简介
	Birthday string // 生日
}

Profile 表示用户详细资料的结构体

type RecentActivity

type RecentActivity struct {
	ID          int64
	UserID      int64
	Description string
	Time        string
}

type Relation

type Relation struct {
	FolloweeId int64
	FollowerId int64
}

type RelationStats

type RelationStats struct {
	FollowerCount int64
	FolloweeCount int64
}

type SecondKillEvent

type SecondKillEvent struct {
	ID           int           // 秒杀活动的唯一标识符
	Name         string        // 秒杀活动名称
	Description  string        // 秒杀活动描述
	StartTime    int64         // UNIX 时间戳,表示活动开始时间
	EndTime      int64         // UNIX 时间戳,表示活动结束时间
	Status       string        // 秒杀活动状态
	Participants []Participant // 参与者列表
}

SecondKillEvent 表示一个秒杀活动

type User

type User struct {
	ID          int64   // 用户ID,主键
	Phone       *string // 手机号码,指针类型,允许为空
	Email       string  // 邮箱地址,唯一
	Password    string  // 密码
	CreateTime  int64   // 创建时间,Unix时间戳
	UpdatedTime int64
	Deleted     bool    // 删除标志,表示该用户是否被删除
	Profile     Profile // 用户的详细资料
}

User 表示用户信息的结构体

type UserSearch

type UserSearch struct {
	Id       int64
	Email    string
	Nickname string
	Phone    *string
}

type UserWithProfileAndRule

type UserWithProfileAndRule struct {
	ID           int64
	PasswordHash string
	Deleted      bool
	Email        string
	Phone        *string
	ProfileID    int64
	UserID       int64
	NickName     string
	Avatar       string
	About        string
	Birthday     string
	Role         string
}

Directories

Path Synopsis
es
im
sms

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL