33 lines
2.2 KiB
Go
33 lines
2.2 KiB
Go
package bundle
|
|
|
|
type UserWorkConfirmReq struct {
|
|
WorkUuid string `json:"workUuid"`
|
|
ConfirmRemark string `json:"confirmRemark"`
|
|
ConfirmStatus int `json:"confirmStatus"` // 1确认 2 驳回
|
|
}
|
|
|
|
type GetBundleBalanceListResp struct {
|
|
|
|
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
|
|
Data []*BundleBalanceItem `protobuf:"bytes,2,rep,name=data,proto3" json:"data"`
|
|
}
|
|
|
|
type BundleBalanceItem struct {
|
|
UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId"`
|
|
UserName string `protobuf:"bytes,2,opt,name=userName,proto3" json:"userName"`
|
|
UserPhoneNumber string `protobuf:"bytes,3,opt,name=userPhoneNumber,proto3" json:"userPhoneNumber"`
|
|
Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status"`
|
|
BundleName string `protobuf:"bytes,5,opt,name=bundleName,proto3" json:"bundleName"`
|
|
ExpiredTime int64 `protobuf:"varint,6,opt,name=expiredTime,proto3" json:"expiredTime"`
|
|
AccountNumber int32 `protobuf:"varint,7,opt,name=accountNumber,proto3" json:"accountNumber"`
|
|
AccountConsumptionNumber int32 `protobuf:"varint,8,opt,name=accountConsumptionNumber,proto3" json:"accountConsumptionNumber"`
|
|
VideoNumber int32 `protobuf:"varint,9,opt,name=videoNumber,proto3" json:"videoNumber"`
|
|
VideoConsumptionNumber int32 `protobuf:"varint,10,opt,name=videoConsumptionNumber,proto3" json:"videoConsumptionNumber"`
|
|
ImageNumber int32 `protobuf:"varint,11,opt,name=imageNumber,proto3" json:"imageNumber"`
|
|
ImageConsumptionNumber int32 `protobuf:"varint,12,opt,name=imageConsumptionNumber,proto3" json:"imageConsumptionNumber"`
|
|
DataAnalysisNumber int32 `protobuf:"varint,13,opt,name=dataAnalysisNumber,proto3" json:"dataAnalysisNumber"`
|
|
DataAnalysisConsumptionNumber int32 `protobuf:"varint,14,opt,name=dataAnalysisConsumptionNumber,proto3" json:"dataAnalysisConsumptionNumber"`
|
|
ExpansionPacksNumber int32 `protobuf:"varint,15,opt,name=expansionPacksNumber,proto3" json:"expansionPacksNumber"`
|
|
Bought int32 `protobuf:"varint,16,opt,name=bought,proto3" json:"bought"`
|
|
}
|