refactor: add unified all service gateway

This commit is contained in:
2026-08-10 10:03:46 +08:00
parent 5ea45a76fe
commit f994b2de9c
143 changed files with 2853 additions and 2129 deletions

View File

@@ -6,16 +6,16 @@ import "module/ec/mall/proto/const.proto";
// Store(店铺)微服务-公告
service Notice{
// 公告列表
rpc Fetch(blocks.MallFetchRequest) returns (NoticeListReply){};
rpc Fetch(ec_mall_blocks.MallFetchRequest) returns (NoticeListReply){};
// 新建公告
rpc Create (NoticeItem) returns (blocks.IdentityStatusReply){};
rpc Create (NoticeItem) returns (ec_mall_blocks.IdentityStatusReply){};
// 修改公告
rpc Modify (NoticeItem) returns (blocks.IdentityStatusReply){};
rpc Modify (NoticeItem) returns (ec_mall_blocks.IdentityStatusReply){};
// 删除公告
rpc Delete (blocks.IdentRequest) returns (blocks.IdentityStatusReply){};
rpc Delete (ec_mall_blocks.IdentRequest) returns (ec_mall_blocks.IdentityStatusReply){};
}
// 公告列表