coupon

package
v1.2.5 Latest Latest
Warning

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

Go to latest
Published: Dec 31, 2025 License: GPL-3.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Coupon

type Coupon struct {
	Id         int64     `gorm:"primaryKey"`
	Name       string    `gorm:"type:varchar(255);not null;default:'';comment:Coupon Name"`
	Code       string    `gorm:"type:varchar(255);not null;default:'';unique;comment:Coupon Code"`
	Count      int64     `gorm:"type:int;not null;default:0;comment:Count Limit"`
	Type       uint8     `gorm:"type:tinyint(1);not null;default:1;comment:Coupon Type: 1: Percentage 2: Fixed Amount"`
	Discount   int64     `gorm:"type:int;not null;default:0;comment:Coupon Discount"`
	StartTime  int64     `gorm:"type:int;not null;default:0;comment:Start Time"`
	ExpireTime int64     `gorm:"type:int;not null;default:0;comment:Expire Time"`
	UserLimit  int64     `gorm:"type:int;not null;default:0;comment:User Limit"`
	Subscribe  string    `gorm:"type:varchar(255);not null;default:'';comment:Subscribe Limit"`
	UsedCount  int64     `gorm:"type:int;not null;default:0;comment:Used Count"`
	Enable     *bool     `gorm:"type:tinyint(1);not null;default:1;comment:Enable"`
	CreatedAt  time.Time `gorm:"<-:create;comment:Create Time"`
	UpdatedAt  time.Time `gorm:"comment:Update Time"`
}

func (Coupon) TableName

func (Coupon) TableName() string

type Model

type Model interface {
	// contains filtered or unexported methods
}

func NewModel

func NewModel(conn *gorm.DB, c *redis.Client) Model

NewModel returns a model for the database table.

Jump to

Keyboard shortcuts

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