|
@@ -11,14 +11,27 @@ type UserAccessDTO struct {
|
|
TemplateUserId int
|
|
TemplateUserId int
|
|
ProductID int
|
|
ProductID int
|
|
ProductType string
|
|
ProductType string
|
|
|
|
+ BeginDate string
|
|
|
|
+ EndDate string
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+var (
|
|
|
|
+ productMap = map[string]merchant.MerchantProductType{
|
|
|
|
+ "package": merchant.Package,
|
|
|
|
+ "video": merchant.Video,
|
|
|
|
+ "audio": merchant.Audio,
|
|
|
|
+ "report": merchant.Report,
|
|
|
|
+ }
|
|
|
|
+)
|
|
|
|
+
|
|
func convertToUserAccessDTO(userSubscriptionAccessList merchant.UserSubscriptionAccessList) UserAccessDTO {
|
|
func convertToUserAccessDTO(userSubscriptionAccessList merchant.UserSubscriptionAccessList) UserAccessDTO {
|
|
return UserAccessDTO{
|
|
return UserAccessDTO{
|
|
ID: userSubscriptionAccessList.ID,
|
|
ID: userSubscriptionAccessList.ID,
|
|
TemplateUserId: userSubscriptionAccessList.TemplateUserId,
|
|
TemplateUserId: userSubscriptionAccessList.TemplateUserId,
|
|
ProductID: userSubscriptionAccessList.ProductID,
|
|
ProductID: userSubscriptionAccessList.ProductID,
|
|
- ProductType: userSubscriptionAccessList.ProductType,
|
|
|
|
|
|
+ ProductType: string(userSubscriptionAccessList.ProductType),
|
|
|
|
+ BeginDate: userSubscriptionAccessList.BeginDate.Format(time.DateOnly),
|
|
|
|
+ EndDate: userSubscriptionAccessList.EndDate.Format(time.DateOnly),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
func OpenProduct(templateUserId int, productOrderNo string, product MerchantProductDTO) error {
|
|
func OpenProduct(templateUserId int, productOrderNo string, product MerchantProductDTO) error {
|
|
@@ -26,7 +39,7 @@ func OpenProduct(templateUserId int, productOrderNo string, product MerchantProd
|
|
TemplateUserId: templateUserId,
|
|
TemplateUserId: templateUserId,
|
|
ProductID: product.Id,
|
|
ProductID: product.Id,
|
|
ProductName: product.Title,
|
|
ProductName: product.Title,
|
|
- ProductType: product.Type,
|
|
|
|
|
|
+ ProductType: productMap[product.Type],
|
|
BeginDate: time.Now(),
|
|
BeginDate: time.Now(),
|
|
Status: merchant.SubscribeValid,
|
|
Status: merchant.SubscribeValid,
|
|
ProductOrderNo: productOrderNo,
|
|
ProductOrderNo: productOrderNo,
|
|
@@ -42,7 +55,7 @@ func CloseProduct(templateUserId int, productOrderNo string, product MerchantPro
|
|
TemplateUserId: templateUserId,
|
|
TemplateUserId: templateUserId,
|
|
ProductID: product.Id,
|
|
ProductID: product.Id,
|
|
ProductName: product.Title,
|
|
ProductName: product.Title,
|
|
- ProductType: product.Type,
|
|
|
|
|
|
+ ProductType: productMap[product.Type],
|
|
Status: merchant.SubscribeClose,
|
|
Status: merchant.SubscribeClose,
|
|
ProductOrderNo: productOrderNo,
|
|
ProductOrderNo: productOrderNo,
|
|
}
|
|
}
|
|
@@ -61,6 +74,15 @@ func SubscribeList(templateUserId int, productType string, pageInfo page.PageInf
|
|
}
|
|
}
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+func GetUserSubscribe(templateUserId int, productId int) (dto UserAccessDTO, err error) {
|
|
|
|
+ var subscribe merchant.UserSubscriptionAccessList
|
|
|
|
+ subscribe, err = merchant.GetUserSubscribeById(templateUserId, productId)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ dto = convertToUserAccessDTO(subscribe)
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
|
|
func GetTotalUserPageCountByProductType(productType string, id int) (int64, int64) {
|
|
func GetTotalUserPageCountByProductType(productType string, id int) (int64, int64) {
|
|
return merchant.GetTotalUserPageCountByProductType(productType, id)
|
|
return merchant.GetTotalUserPageCountByProductType(productType, id)
|