|
@@ -26,17 +26,17 @@ var (
|
|
|
|
|
|
// UserSubscriptionAccessList 用户订阅访问列表
|
|
|
type UserSubscriptionAccessList struct {
|
|
|
- ID int `gorm:"column:id;primaryKey"`
|
|
|
- TemplateUserId int `gorm:"column:template_user_id"`
|
|
|
- ProductID int `gorm:"column:product_id"`
|
|
|
- ProductName string `gorm:"column:product_name"`
|
|
|
- ProductType string `gorm:"column:product_type"`
|
|
|
- BeginDate time.Time `gorm:"column:begin_date"`
|
|
|
- EndDate time.Time `gorm:"column:end_date"`
|
|
|
- Status SubscribeStatus `gorm:"column:status;type:enum('valid','expired');default:'valid'"`
|
|
|
- CreatedTime time.Time `gorm:"column:created_time"`
|
|
|
- UpdatedTime time.Time `gorm:"column:updated_time"`
|
|
|
- ProductOrderNo string `gorm:"-"`
|
|
|
+ ID int `gorm:"column:id;primaryKey"`
|
|
|
+ TemplateUserId int `gorm:"column:template_user_id"`
|
|
|
+ ProductID int `gorm:"column:product_id"`
|
|
|
+ ProductName string `gorm:"column:product_name"`
|
|
|
+ ProductType MerchantProductType `gorm:"column:product_type"`
|
|
|
+ BeginDate time.Time `gorm:"column:begin_date"`
|
|
|
+ EndDate time.Time `gorm:"column:end_date"`
|
|
|
+ Status SubscribeStatus `gorm:"column:status;type:enum('valid','expired');default:'valid'"`
|
|
|
+ CreatedTime time.Time `gorm:"column:created_time"`
|
|
|
+ UpdatedTime time.Time `gorm:"column:updated_time"`
|
|
|
+ ProductOrderNo string `gorm:"-"`
|
|
|
}
|
|
|
|
|
|
func (UserSubscriptionAccessList) TableName() string {
|
|
@@ -53,7 +53,7 @@ func (access *UserSubscriptionAccessList) BeforeCreate(_ *gorm.DB) (err error) {
|
|
|
access.CreatedTime = time.Now()
|
|
|
flow := UserSubscriptionAccessFlow{
|
|
|
ProductID: access.ProductID,
|
|
|
- ProductType: access.ProductType,
|
|
|
+ ProductType: string(access.ProductType),
|
|
|
ProductOrderId: access.ProductOrderNo,
|
|
|
OpenType: subscribeStatusMap[access.Status],
|
|
|
CreatedTime: time.Now(),
|
|
@@ -98,7 +98,11 @@ func SubscribeList(templateUserId int, productType string, latestId int64, offse
|
|
|
err = db.Model(&UserSubscriptionAccessList{}).Where("id<=? and template_user_id=? AND product_type=? and status=?", latestId, templateUserId, productType, SubscribeValid).Order("begin_date desc").Offset(offset).Limit(pageSize).Find(&list).Error
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
+func GetUserSubscribeById(templateUserId int, productId int) (list UserSubscriptionAccessList, err error) {
|
|
|
+ db := models.Main()
|
|
|
+ err = db.Select("id,template_user_id,product_id,product_name,begin_date,end_date,status").Where(" template_user_id=? AND product_id=? and status=?", templateUserId, productId).First(&list).Error
|
|
|
+ return
|
|
|
+}
|
|
|
func GetTotalUserPageCountByProductType(productType string, templateUserId int) (count int64, latestId int64) {
|
|
|
db := models.Main()
|
|
|
err := db.Model(&UserSubscriptionAccessList{}).Select("count(*)").Where("template_user_id=? AND product_type=? and status=?", templateUserId, productType, SubscribeValid).Scan(&count).Error
|