Compare commits
No commits in common. "ddb1d66185963951ee5f8783f4d739212032f3e9" and "c01e623820b7b54a055cce8bc097615bdcf7c4bb" have entirely different histories.
ddb1d66185
...
c01e623820
@ -463,8 +463,6 @@ func (b *BundleProvider) GetArtistUploadStatsList(_ context.Context, req *bundle
|
||||
SubNum: it.SubNum,
|
||||
ArtistName: it.UserName,
|
||||
TelNum: it.UserPhoneNumber,
|
||||
StartAt: it.StartAt,
|
||||
ExpiredAt: it.ExpiredAt,
|
||||
UploadedVideoCount: int32(it.UploadedVideoCount),
|
||||
BundleVideoTotal: int32(it.BundleVideoTotal),
|
||||
IncreaseVideoTotal: int32(it.IncreaseVideoTotal),
|
||||
|
||||
@ -323,8 +323,6 @@ type ArtistUploadStatsItem struct {
|
||||
SubNum string `json:"subNum" gorm:"column:customer_num"`
|
||||
UserName string `json:"userName" gorm:"column:user_name"`
|
||||
UserPhoneNumber string `json:"userPhoneNumber" gorm:"column:user_phone_number"`
|
||||
StartAt string `json:"startAt" gorm:"column:start_at"`
|
||||
ExpiredAt string `json:"expiredAt" gorm:"column:expired_at"`
|
||||
|
||||
// 视频
|
||||
UploadedVideoCount int `json:"uploadedVideoCount" gorm:"column:uploaded_video_count"`
|
||||
@ -555,8 +553,6 @@ cvs_agg AS (
|
||||
rn.name AS user_name,
|
||||
u.tel_num AS user_phone_number,
|
||||
bor.customer_num,
|
||||
aw.start_at AS start_at,
|
||||
aw.expired_at AS expired_at,
|
||||
COALESCE(cw.uploaded_video_count,0) AS uploaded_video_count,
|
||||
COALESCE(cvs.uploaded_video_script_count,0) AS uploaded_video_script_count,
|
||||
COALESCE(cw.uploaded_post_count,0) AS uploaded_post_count,
|
||||
|
||||
@ -1389,10 +1389,6 @@ message ArtistUploadStatsItem {
|
||||
// 脚本数
|
||||
int32 uploadedVideoScriptCount = 23 [json_name = "uploadedVideoScriptCount"];
|
||||
int32 pendingVideoScriptCount = 24 [json_name = "pendingVideoScriptCount"];
|
||||
|
||||
// 套餐时间
|
||||
string startAt = 25 [json_name = "startAt"];
|
||||
string expiredAt = 26 [json_name = "expiredAt"];
|
||||
}
|
||||
|
||||
// 艺人上传与额度统计响应
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -7,8 +7,8 @@ import (
|
||||
fmt "fmt"
|
||||
math "math"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
_ "google.golang.org/protobuf/types/descriptorpb"
|
||||
_ "github.com/mwitkow/go-proto-validators"
|
||||
_ "google.golang.org/protobuf/types/descriptorpb"
|
||||
github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
|
||||
)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user