修改冲突

This commit is contained in:
孙肖扬 2025-06-26 17:10:29 +08:00
parent 9c9e9c0663
commit a01be125e6
5 changed files with 1414 additions and 1403 deletions

View File

@ -4,6 +4,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"micro-bundle/internal/dao" "micro-bundle/internal/dao"
"micro-bundle/pb/bundle"
"micro-bundle/pkg/app" "micro-bundle/pkg/app"
"micro-bundle/pkg/msg" "micro-bundle/pkg/msg"
"time" "time"
@ -14,7 +15,6 @@ import (
"gorm.io/gorm" "gorm.io/gorm"
"micro-bundle/internal/model" "micro-bundle/internal/model"
"micro-bundle/pb/bundle"
) )
func CreateBundle(req *bundle.BundleProfile) (res *bundle.CommonResponse, err error) { func CreateBundle(req *bundle.BundleProfile) (res *bundle.CommonResponse, err error) {

View File

@ -416,6 +416,7 @@ message OrderRecordsDetailRequest {
string orderNo = 2 [json_name = "orderNo"]; string orderNo = 2 [json_name = "orderNo"];
string customerID = 3 [json_name = "customerID"]; string customerID = 3 [json_name = "customerID"];
string bundleUUID = 4 [json_name = "bundleUUID"]; string bundleUUID = 4 [json_name = "bundleUUID"];
uint64 status = 5 [json_name = "status"];
} }
message OrderRecordsDetailResponse { message OrderRecordsDetailResponse {
@ -711,7 +712,7 @@ message WorkCastItem{
uint32 workCategory = 5; // 1 2 uint32 workCategory = 5; // 1 2
string bundleUuid = 6; // ID uuid string bundleUuid = 6; // ID uuid
string bundleName = 7; // string bundleName = 7; //
string platformIDs = 8; // ID集合 (json ) string platformIds = 8; // ID集合 (json )
string mediaNames = 9; // string mediaNames = 9; //
string mediaAccIDs = 10; // ID集合 string mediaAccIDs = 10; // ID集合
string workTitle = 11; // string workTitle = 11; //
@ -755,8 +756,8 @@ message workItem{
string content = 4; string content = 4;
uint32 workCategory = 5; uint32 workCategory = 5;
uint32 workStatus = 6; uint32 workStatus = 6;
string platformIDs = 7; string platformIds = 7;
string mediaNames = 8; string mediaNames = 8;
string mediaAccUserIds = 9; string mediaAccUserIds = 9;
int64 confirmedAt = 10; int64 confirmedAt = 10;
int64 createdAt = 11; // int64 createdAt = 11; //

File diff suppressed because it is too large Load Diff

View File

@ -7,8 +7,8 @@ import (
fmt "fmt" fmt "fmt"
math "math" math "math"
proto "github.com/golang/protobuf/proto" proto "github.com/golang/protobuf/proto"
_ "google.golang.org/protobuf/types/descriptorpb"
_ "github.com/mwitkow/go-proto-validators" _ "github.com/mwitkow/go-proto-validators"
_ "google.golang.org/protobuf/types/descriptorpb"
github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators" github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators"
) )

View File

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-triple. DO NOT EDIT. // Code generated by protoc-gen-go-triple. DO NOT EDIT.
// versions: // versions:
// - protoc-gen-go-triple v1.0.8 // - protoc-gen-go-triple v1.0.8
// - protoc v3.20.3 // - protoc v4.24.0--rc1
// source: pb/bundle.proto // source: pb/bundle.proto
package bundle package bundle