jason 4c09ca6991 change il y a 3 ans
..
v1 4c09ca6991 change il y a 3 ans
ReadMe.md d6753a8219 add files il y a 4 ans
enterprise_management.pb.go cd0c762ae3 change il y a 3 ans
enterprise_management.proto cd0c762ae3 change il y a 3 ans
log_service.pb.go eb1437b590 change il y a 4 ans
log_service.proto 023bf8ade2 change il y a 4 ans
setup.go 95be1060c4 change il y a 4 ans
thirdparty_management.pb.go 5968b16b7e 修改邮箱电话号 il y a 4 ans
thirdparty_management.proto 5968b16b7e 修改邮箱电话号 il y a 4 ans

ReadMe.md

必要条件

  1. 下载与安装protoc工具

    https://github.com/protocolbuffers/protobuf/releases

  2. 安装protoc Go插件:protoc-gen-go

    方式1(默认带omitempty):

    go get -u github.com/golang/protobuf/protoc-gen-go
    

    方式2(不带omitempty):

    cd mod /github.com/golang/protobuf@v1.3.4/protoc-gen-go/generator
    go build
    cp protoc-gen-go $GOBIN/
    

生成说明

  1. 普通生成 protoc --go_out=. *.proto
  2. 支持rpc protoc --go_out=plugins=grpc:. *.proto