Browse Source

fix:MsgType统一格式

duxin 3 years ago
parent
commit
7f3f9b7723

+ 1 - 1
rpc/common/common.proto

@@ -71,7 +71,7 @@ message SensitiveResponse {
 //
 service Common {
 	//获取省份信息(暂不用)
-  	rpc AreaInfo(ProjectReq) returns(AreaResp);
+	rpc AreaInfo(ProjectReq) returns(AreaResp);
 	//获取行业信息(暂不用)
 	rpc IndustryInfo(ProjectReq) returns(IndustryResp);
 	//修改信息发布状态

+ 4 - 4
rpc/consumer/consumer.proto

@@ -82,7 +82,7 @@ message InfoData {
 message MyPublishListReq{
 	string userId = 1;//用户id
 	string match = 2;//检索内容
-	int64 msgType = 3;//信息类型 1:招标信息 2:采购信息 3:供应信息
+	string msgType = 3;//信息类型 1:招标信息 2:采购信息 3:供应信息
 	int64 reviewStatus = 4;//审核状态 1:待审核|2:审核通过|3:审核不通过
 	int64 pageSize = 5;//每页数据量,默认10
 	int64 pageIndex = 6;//页码;默认第一页
@@ -109,7 +109,7 @@ message ListResp{
 	string title = 1;//标题
 	string id = 2;//信息id
 	int64 reviewStatus = 3;//审核状态 1:待审核|2:审核通过|3:审核不通过
-	int64 msgType = 4;//信息类型 1:招标信息 2:采购信息 3:供应信息
+	string msgType = 4;//信息类型 1:招标信息 2:采购信息 3:供应信息
 	string createTime =5;//审核时间
 }
 
@@ -119,7 +119,7 @@ message InfoDetailReq{
 	string msgId = 2;//信息id
 	int64 type = 3;//处理信息类型:0:获取发布信息详情(默认);1:删除发布的信息;2:更新发布信息
 	string appId = 4;//剑鱼标识 默认10000
-	int64 msgType = 5;//信息类型 1:招标信息 2:采购信息 3:供应信息
+	string msgType = 5;//信息类型 1:招标信息 2:采购信息 3:供应信息
 }
 
 //发布的信息详情Resp
@@ -130,7 +130,7 @@ message InfoDetailResp{
 }
 
 message InfoDetailData {
-	int64 msgType = 1;//信息类型
+	string msgType = 1;//信息类型
 	string code = 2;//项目代码
 	string province = 3;//省份
 	string city = 4;//城市

+ 5 - 5
rpc/consumer/internal/logic/infochangelogic.go

@@ -48,7 +48,7 @@ func (l *InfoChangeLogic) InfoChange(in *consumer.InfoDetailReq) (*consumer.Info
 
 		data := make(map[string]interface{})
 
-		if in.MsgType == 1 || in.MsgType == 2 {
+		if in.MsgType == "1" || in.MsgType == "2" {
 			if _d := model.Mysql.SelectBySql(`SELECT a.*,b.title as relatedTitle FROM information a
 				LEFT JOIN information b on (a.related_id =b.id) where a.id = ? and a.app_id = `+util.StrFormat(in.AppId), mc.IntAll(msgId)); _d != nil && len(*_d) > 0 {
 				data = (*_d)[0]
@@ -74,7 +74,7 @@ func (l *InfoChangeLogic) InfoChange(in *consumer.InfoDetailReq) (*consumer.Info
 				break
 			}
 
-		} else if in.MsgType == 3 {
+		} else if in.MsgType == "3" {
 			if _d := model.Mysql.SelectBySql(`SELECT * FROM supply_info where id = ? and app_id = `+util.StrFormat(in.AppId), mc.IntAll(msgId)); _d != nil && len(*_d) > 0 {
 				data = (*_d)[0]
 				Results.ValidityTime = mc.InterfaceToStr(data["validity_time"])
@@ -88,7 +88,7 @@ func (l *InfoChangeLogic) InfoChange(in *consumer.InfoDetailReq) (*consumer.Info
 		Results.City = mc.InterfaceToStr(data["city"])
 		Results.AppId = mc.InterfaceToStr(data["app_id"])
 		Results.Title = mc.InterfaceToStr(data["title"])
-		Results.MsgType = mc.Int64All(data["type"])
+		Results.MsgType = mc.InterfaceToStr(data["type"])
 
 		Results.Detail = mc.InterfaceToStr(data["detail"])
 		Results.Attach = mc.InterfaceToStr(data["attach"])
@@ -114,7 +114,7 @@ func (l *InfoChangeLogic) InfoChange(in *consumer.InfoDetailReq) (*consumer.Info
 	case 1:
 		query["id"] = mc.IntAll(msgId)
 		query["app_id"] = in.AppId
-		if in.MsgType == 1 || in.MsgType == 2 {
+		if in.MsgType == "1" || in.MsgType == "2" {
 
 			if data := model.Mysql.FindOne("information", query, "", ""); data != nil && len(*data) > 0 {
 				upQuery["is_del"] = -1
@@ -134,7 +134,7 @@ func (l *InfoChangeLogic) InfoChange(in *consumer.InfoDetailReq) (*consumer.Info
 				dataRes.ErrCode = -1
 				dataRes.ErrMsg = "查询数据失败"
 			}
-		} else if in.MsgType == 3 {
+		} else if in.MsgType == "3" {
 			if data := model.Mysql.FindOne("supply_info", query, "", ""); data != nil && len(*data) > 0 {
 				upQuery["is_del"] = -1
 				if !model.Mysql.Update("supply_info", query, upQuery) {

+ 3 - 3
rpc/consumer/internal/logic/mypublishlistlogic.go

@@ -38,8 +38,8 @@ func (l *MyPublishListLogic) MyPublishList(in *consumer.MyPublishListReq) (*cons
 	if in.Match != "" {
 		queryName = ` and title LIKE '%` + in.Match + `%' `
 	}
-	if in.MsgType != 0 {
-		queryName = queryName + ` and type=` + mc.InterfaceToStr(in.MsgType)
+	if in.MsgType != "" {
+		queryName = queryName + ` and type=` + in.MsgType
 	}
 	if in.AppId != "" {
 		queryName = queryName + ` and app_id = ` + util.StrFormat(in.AppId)
@@ -105,7 +105,7 @@ func (l *MyPublishListLogic) MyPublishList(in *consumer.MyPublishListReq) (*cons
 				vs.ReviewStatus = 3
 			}
 			ListData.Total = total
-			vs.MsgType = mc.Int64All(v["type"])
+			vs.MsgType = mc.InterfaceToStr(v["type"])
 			vs.CreateTime = mc.InterfaceToStr(v["create_time"])
 			vs.Title = mc.InterfaceToStr(v["title"])
 			ListData.List = append(ListData.List, &vs)

+ 20 - 20
rpc/consumer/type/consumer/consumer.pb.go

@@ -713,7 +713,7 @@ type MyPublishListReq struct {
 
 	UserId       string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`              //用户id
 	Match        string `protobuf:"bytes,2,opt,name=match,proto3" json:"match,omitempty"`                //检索内容
-	MsgType      int64  `protobuf:"varint,3,opt,name=msgType,proto3" json:"msgType,omitempty"`           //信息类型 1:招标信息 2:采购信息 3:供应信息
+	MsgType      string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType,omitempty"`            //信息类型 1:招标信息 2:采购信息 3:供应信息
 	ReviewStatus int64  `protobuf:"varint,4,opt,name=reviewStatus,proto3" json:"reviewStatus,omitempty"` //审核状态 1:待审核|2:审核通过|3:审核不通过
 	PageSize     int64  `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"`         //每页数据量,默认10
 	PageIndex    int64  `protobuf:"varint,6,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`       //页码;默认第一页
@@ -766,11 +766,11 @@ func (x *MyPublishListReq) GetMatch() string {
 	return ""
 }
 
-func (x *MyPublishListReq) GetMsgType() int64 {
+func (x *MyPublishListReq) GetMsgType() string {
 	if x != nil {
 		return x.MsgType
 	}
-	return 0
+	return ""
 }
 
 func (x *MyPublishListReq) GetReviewStatus() int64 {
@@ -961,7 +961,7 @@ type ListResp struct {
 	Title        string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`                //标题
 	Id           string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`                      //信息id
 	ReviewStatus int64  `protobuf:"varint,3,opt,name=reviewStatus,proto3" json:"reviewStatus,omitempty"` //审核状态 1:待审核|2:审核通过|3:审核不通过
-	MsgType      int64  `protobuf:"varint,4,opt,name=msgType,proto3" json:"msgType,omitempty"`           //信息类型 1:招标信息 2:采购信息 3:供应信息
+	MsgType      string `protobuf:"bytes,4,opt,name=msgType,proto3" json:"msgType,omitempty"`            //信息类型 1:招标信息 2:采购信息 3:供应信息
 	CreateTime   string `protobuf:"bytes,5,opt,name=createTime,proto3" json:"createTime,omitempty"`      //审核时间
 }
 
@@ -1018,11 +1018,11 @@ func (x *ListResp) GetReviewStatus() int64 {
 	return 0
 }
 
-func (x *ListResp) GetMsgType() int64 {
+func (x *ListResp) GetMsgType() string {
 	if x != nil {
 		return x.MsgType
 	}
-	return 0
+	return ""
 }
 
 func (x *ListResp) GetCreateTime() string {
@@ -1038,11 +1038,11 @@ type InfoDetailReq struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	UserId  string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`    //用户id
-	MsgId   string `protobuf:"bytes,2,opt,name=msgId,proto3" json:"msgId,omitempty"`      //信息id
-	Type    int64  `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`       //处理信息类型:0:获取发布信息详情(默认);1:删除发布的信息;2:更新发布信息
-	AppId   string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`      //剑鱼标识 默认10000
-	MsgType int64  `protobuf:"varint,5,opt,name=msgType,proto3" json:"msgType,omitempty"` //信息类型 1:招标信息 2:采购信息 3:供应信息
+	UserId  string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`   //用户id
+	MsgId   string `protobuf:"bytes,2,opt,name=msgId,proto3" json:"msgId,omitempty"`     //信息id
+	Type    int64  `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`      //处理信息类型:0:获取发布信息详情(默认);1:删除发布的信息;2:更新发布信息
+	AppId   string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`     //剑鱼标识 默认10000
+	MsgType string `protobuf:"bytes,5,opt,name=msgType,proto3" json:"msgType,omitempty"` //信息类型 1:招标信息 2:采购信息 3:供应信息
 }
 
 func (x *InfoDetailReq) Reset() {
@@ -1105,11 +1105,11 @@ func (x *InfoDetailReq) GetAppId() string {
 	return ""
 }
 
-func (x *InfoDetailReq) GetMsgType() int64 {
+func (x *InfoDetailReq) GetMsgType() string {
 	if x != nil {
 		return x.MsgType
 	}
-	return 0
+	return ""
 }
 
 //发布的信息详情Resp
@@ -1181,7 +1181,7 @@ type InfoDetailData struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	MsgType           int64              `protobuf:"varint,1,opt,name=msgType,proto3" json:"msgType,omitempty"`                     //信息类型
+	MsgType           string             `protobuf:"bytes,1,opt,name=msgType,proto3" json:"msgType,omitempty"`                      //信息类型
 	Code              string             `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`                            //项目代码
 	Province          string             `protobuf:"bytes,3,opt,name=province,proto3" json:"province,omitempty"`                    //省份
 	City              string             `protobuf:"bytes,4,opt,name=city,proto3" json:"city,omitempty"`                            //城市
@@ -1234,11 +1234,11 @@ func (*InfoDetailData) Descriptor() ([]byte, []int) {
 	return file_consumer_proto_rawDescGZIP(), []int{15}
 }
 
-func (x *InfoDetailData) GetMsgType() int64 {
+func (x *InfoDetailData) GetMsgType() string {
 	if x != nil {
 		return x.MsgType
 	}
-	return 0
+	return ""
 }
 
 func (x *InfoDetailData) GetCode() string {
@@ -2901,7 +2901,7 @@ var file_consumer_proto_rawDesc = []byte{
 	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
 	0x0a, 0x05, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d,
 	0x61, 0x74, 0x63, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18,
-	0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22,
+	0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22,
 	0x0a, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04,
 	0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74,
 	0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x05,
@@ -2935,7 +2935,7 @@ var file_consumer_proto_rawDesc = []byte{
 	0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x72,
 	0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
 	0x03, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
-	0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
+	0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
 	0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65,
 	0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
 	0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x0d, 0x49, 0x6e,
@@ -2946,7 +2946,7 @@ var file_consumer_proto_rawDesc = []byte{
 	0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a,
 	0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
 	0x70, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05,
-	0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x78, 0x0a,
+	0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x78, 0x0a,
 	0x0e, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12,
 	0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
 	0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x72,
@@ -2956,7 +2956,7 @@ var file_consumer_proto_rawDesc = []byte{
 	0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x52, 0x07,
 	0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xf4, 0x04, 0x0a, 0x0e, 0x49, 0x6e, 0x66, 0x6f,
 	0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
-	0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6d, 0x73, 0x67,
+	0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67,
 	0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
 	0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76,
 	0x69, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76,

+ 1 - 1
rpc/manager/internal/logic/infolistlogic.go

@@ -90,7 +90,7 @@ func (l *InfoListLogic) InfoList(in *manager.InfoListReq) (*manager.InfoListResp
 	} else {
 		offset = common.IntAll((in.PageIndex - 1) * in.PageSize)
 	}
-	allData := model.Mysql.SelectBySql(`SELECT a.id,a.type,a.status,a.phone,a.contact_person,a.contact_person,a.title,a.create_time  from (SELECT id,type,status,phone,contact_person,contact_phone,title,create_time  from information `+queryInfo+`
+	allData := model.Mysql.SelectBySql(`SELECT a.id,a.type,a.status,a.phone,a.contact_person,a.contact_person,a.contact_phone,a.title,a.create_time  from (SELECT id,type,status,phone,contact_person,contact_phone,title,create_time  from information `+queryInfo+`
 			union all
 			SELECT id,type,status,phone,contact_person,contact_phone,title,create_time  from supply_info `+queryInfo+` ) a  order by a.create_time limit ?,? `, offset, in.PageSize)
 	if allData != nil && len(*allData) > 0 {

+ 0 - 15
rpc/manager/manager.proto

@@ -135,21 +135,6 @@ message InfoExamineResp{
 	}
 }
 
-//修改中台信息状态 Req
-message InfoStateReq{
-	string id = 1;//信息id
-}
-
-//修改中台信息内容 Req
-message InfoDataReq{
-	string id = 1;//信息id
-	string msgType = 2;//信息类型
-	repeated string title = 3; //敏感词-标题
-	repeated string detail = 4;//敏感词-详情
-	string attachments = 5;//敏感词-附件
-	string attach_txt = 6;//识别后的附件信息(对应检索库)
-}
-
 //修改中台 Resp
 message InfoResp{
 	int64 err_code = 1;

+ 0 - 2
rpc/manager/manager/manager.go

@@ -17,7 +17,6 @@ type (
 	Contact               = manager.Contact
 	Data                  = manager.Data
 	InfoData              = manager.InfoData
-	InfoDataReq           = manager.InfoDataReq
 	InfoDetailReq         = manager.InfoDetailReq
 	InfoDetailResp        = manager.InfoDetailResp
 	InfoExamineReq        = manager.InfoExamineReq
@@ -27,7 +26,6 @@ type (
 	InfoListReq           = manager.InfoListReq
 	InfoListResp          = manager.InfoListResp
 	InfoResp              = manager.InfoResp
-	InfoStateReq          = manager.InfoStateReq
 	InstitutionsFreezeReq = manager.InstitutionsFreezeReq
 	Related               = manager.Related
 	Review                = manager.Review

+ 44 - 219
rpc/manager/type/manager/manager.pb.go

@@ -1213,142 +1213,6 @@ func (x *InfoExamineResp) GetErrMsg() string {
 	return ""
 }
 
-//修改中台信息状态 Req
-type InfoStateReq struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` //信息id
-}
-
-func (x *InfoStateReq) Reset() {
-	*x = InfoStateReq{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_manager_proto_msgTypes[14]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *InfoStateReq) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*InfoStateReq) ProtoMessage() {}
-
-func (x *InfoStateReq) ProtoReflect() protoreflect.Message {
-	mi := &file_manager_proto_msgTypes[14]
-	if protoimpl.UnsafeEnabled && x != nil {
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		if ms.LoadMessageInfo() == nil {
-			ms.StoreMessageInfo(mi)
-		}
-		return ms
-	}
-	return mi.MessageOf(x)
-}
-
-// Deprecated: Use InfoStateReq.ProtoReflect.Descriptor instead.
-func (*InfoStateReq) Descriptor() ([]byte, []int) {
-	return file_manager_proto_rawDescGZIP(), []int{14}
-}
-
-func (x *InfoStateReq) GetId() string {
-	if x != nil {
-		return x.Id
-	}
-	return ""
-}
-
-//修改中台信息内容 Req
-type InfoDataReq struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	Id          string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`                                //信息id
-	MsgType     string   `protobuf:"bytes,2,opt,name=msgType,proto3" json:"msgType,omitempty"`                      //信息类型
-	Title       []string `protobuf:"bytes,3,rep,name=title,proto3" json:"title,omitempty"`                          //敏感词-标题
-	Detail      []string `protobuf:"bytes,4,rep,name=detail,proto3" json:"detail,omitempty"`                        //敏感词-详情
-	Attachments string   `protobuf:"bytes,5,opt,name=attachments,proto3" json:"attachments,omitempty"`              //敏感词-附件
-	AttachTxt   string   `protobuf:"bytes,6,opt,name=attach_txt,json=attachTxt,proto3" json:"attach_txt,omitempty"` //识别后的附件信息(对应检索库)
-}
-
-func (x *InfoDataReq) Reset() {
-	*x = InfoDataReq{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_manager_proto_msgTypes[15]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *InfoDataReq) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*InfoDataReq) ProtoMessage() {}
-
-func (x *InfoDataReq) ProtoReflect() protoreflect.Message {
-	mi := &file_manager_proto_msgTypes[15]
-	if protoimpl.UnsafeEnabled && x != nil {
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		if ms.LoadMessageInfo() == nil {
-			ms.StoreMessageInfo(mi)
-		}
-		return ms
-	}
-	return mi.MessageOf(x)
-}
-
-// Deprecated: Use InfoDataReq.ProtoReflect.Descriptor instead.
-func (*InfoDataReq) Descriptor() ([]byte, []int) {
-	return file_manager_proto_rawDescGZIP(), []int{15}
-}
-
-func (x *InfoDataReq) GetId() string {
-	if x != nil {
-		return x.Id
-	}
-	return ""
-}
-
-func (x *InfoDataReq) GetMsgType() string {
-	if x != nil {
-		return x.MsgType
-	}
-	return ""
-}
-
-func (x *InfoDataReq) GetTitle() []string {
-	if x != nil {
-		return x.Title
-	}
-	return nil
-}
-
-func (x *InfoDataReq) GetDetail() []string {
-	if x != nil {
-		return x.Detail
-	}
-	return nil
-}
-
-func (x *InfoDataReq) GetAttachments() string {
-	if x != nil {
-		return x.Attachments
-	}
-	return ""
-}
-
-func (x *InfoDataReq) GetAttachTxt() string {
-	if x != nil {
-		return x.AttachTxt
-	}
-	return ""
-}
-
 //修改中台 Resp
 type InfoResp struct {
 	state         protoimpl.MessageState
@@ -1362,7 +1226,7 @@ type InfoResp struct {
 func (x *InfoResp) Reset() {
 	*x = InfoResp{}
 	if protoimpl.UnsafeEnabled {
-		mi := &file_manager_proto_msgTypes[16]
+		mi := &file_manager_proto_msgTypes[14]
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1375,7 +1239,7 @@ func (x *InfoResp) String() string {
 func (*InfoResp) ProtoMessage() {}
 
 func (x *InfoResp) ProtoReflect() protoreflect.Message {
-	mi := &file_manager_proto_msgTypes[16]
+	mi := &file_manager_proto_msgTypes[14]
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1388,7 +1252,7 @@ func (x *InfoResp) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use InfoResp.ProtoReflect.Descriptor instead.
 func (*InfoResp) Descriptor() ([]byte, []int) {
-	return file_manager_proto_rawDescGZIP(), []int{16}
+	return file_manager_proto_rawDescGZIP(), []int{14}
 }
 
 func (x *InfoResp) GetErrCode() int64 {
@@ -1417,7 +1281,7 @@ type InstitutionsFreezeReq struct {
 func (x *InstitutionsFreezeReq) Reset() {
 	*x = InstitutionsFreezeReq{}
 	if protoimpl.UnsafeEnabled {
-		mi := &file_manager_proto_msgTypes[17]
+		mi := &file_manager_proto_msgTypes[15]
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1430,7 +1294,7 @@ func (x *InstitutionsFreezeReq) String() string {
 func (*InstitutionsFreezeReq) ProtoMessage() {}
 
 func (x *InstitutionsFreezeReq) ProtoReflect() protoreflect.Message {
-	mi := &file_manager_proto_msgTypes[17]
+	mi := &file_manager_proto_msgTypes[15]
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1443,7 +1307,7 @@ func (x *InstitutionsFreezeReq) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use InstitutionsFreezeReq.ProtoReflect.Descriptor instead.
 func (*InstitutionsFreezeReq) Descriptor() ([]byte, []int) {
-	return file_manager_proto_rawDescGZIP(), []int{17}
+	return file_manager_proto_rawDescGZIP(), []int{15}
 }
 
 func (x *InstitutionsFreezeReq) GetAppId() string {
@@ -1471,7 +1335,7 @@ type InfoExamineResp_Data struct {
 func (x *InfoExamineResp_Data) Reset() {
 	*x = InfoExamineResp_Data{}
 	if protoimpl.UnsafeEnabled {
-		mi := &file_manager_proto_msgTypes[18]
+		mi := &file_manager_proto_msgTypes[16]
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1484,7 +1348,7 @@ func (x *InfoExamineResp_Data) String() string {
 func (*InfoExamineResp_Data) ProtoMessage() {}
 
 func (x *InfoExamineResp_Data) ProtoReflect() protoreflect.Message {
-	mi := &file_manager_proto_msgTypes[18]
+	mi := &file_manager_proto_msgTypes[16]
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1662,46 +1526,33 @@ var file_manager_proto_rawDesc = []byte{
 	0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73,
 	0x67, 0x1a, 0x1c, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67,
 	0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x22,
-	0x1e, 0x0a, 0x0c, 0x49, 0x6e, 0x66, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12,
-	0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22,
-	0xa6, 0x01, 0x0a, 0x0b, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12,
-	0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
-	0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74,
-	0x6c, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12,
-	0x16, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
-	0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63,
-	0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x74,
-	0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x74, 0x74,
-	0x61, 0x63, 0x68, 0x5f, 0x74, 0x78, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
-	0x74, 0x74, 0x61, 0x63, 0x68, 0x54, 0x78, 0x74, 0x22, 0x3e, 0x0a, 0x08, 0x49, 0x6e, 0x66, 0x6f,
-	0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
-	0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
-	0x17, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0x43, 0x0a, 0x15, 0x49, 0x6e, 0x73, 0x74,
-	0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x52, 0x65,
-	0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
-	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x32, 0x8c, 0x02,
-	0x0a, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x08, 0x49, 0x6e, 0x66,
-	0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
-	0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x6d, 0x61,
-	0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
-	0x73, 0x70, 0x12, 0x3d, 0x0a, 0x0a, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
-	0x12, 0x16, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x44,
-	0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
-	0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73,
-	0x70, 0x12, 0x40, 0x0a, 0x0b, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
-	0x12, 0x17, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x45,
-	0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
-	0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52,
-	0x65, 0x73, 0x70, 0x12, 0x47, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69,
-	0x6f, 0x6e, 0x73, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x12, 0x1e, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
-	0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73,
-	0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
-	0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0b, 0x5a, 0x09,
-	0x2e, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
-	0x33,
+	0x3e, 0x0a, 0x08, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x65,
+	0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65,
+	0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73,
+	0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22,
+	0x43, 0x0a, 0x15, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x46,
+	0x72, 0x65, 0x65, 0x7a, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49,
+	0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14,
+	0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65,
+	0x6e, 0x74, 0x49, 0x64, 0x32, 0x8c, 0x02, 0x0a, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+	0x12, 0x37, 0x0a, 0x08, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x2e, 0x6d,
+	0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52,
+	0x65, 0x71, 0x1a, 0x15, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66,
+	0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3d, 0x0a, 0x0a, 0x49, 0x6e, 0x66,
+	0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+	0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a,
+	0x17, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x65,
+	0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x40, 0x0a, 0x0b, 0x49, 0x6e, 0x66, 0x6f,
+	0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x17, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
+	0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71,
+	0x1a, 0x18, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x45,
+	0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x47, 0x0a, 0x12, 0x49, 0x6e,
+	0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
+	0x12, 0x1e, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x69,
+	0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x52, 0x65, 0x71,
+	0x1a, 0x11, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52,
+	0x65, 0x73, 0x70, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+	0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (
@@ -1716,7 +1567,7 @@ func file_manager_proto_rawDescGZIP() []byte {
 	return file_manager_proto_rawDescData
 }
 
-var file_manager_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
+var file_manager_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
 var file_manager_proto_goTypes = []interface{}{
 	(*InfoListReq)(nil),           // 0: manager.InfoListReq
 	(*InfoListResp)(nil),          // 1: manager.InfoListResp
@@ -1732,11 +1583,9 @@ var file_manager_proto_goTypes = []interface{}{
 	(*Sensitive)(nil),             // 11: manager.Sensitive
 	(*InfoExamineReq)(nil),        // 12: manager.InfoExamineReq
 	(*InfoExamineResp)(nil),       // 13: manager.InfoExamineResp
-	(*InfoStateReq)(nil),          // 14: manager.InfoStateReq
-	(*InfoDataReq)(nil),           // 15: manager.InfoDataReq
-	(*InfoResp)(nil),              // 16: manager.InfoResp
-	(*InstitutionsFreezeReq)(nil), // 17: manager.InstitutionsFreezeReq
-	(*InfoExamineResp_Data)(nil),  // 18: manager.InfoExamineResp.Data
+	(*InfoResp)(nil),              // 14: manager.InfoResp
+	(*InstitutionsFreezeReq)(nil), // 15: manager.InstitutionsFreezeReq
+	(*InfoExamineResp_Data)(nil),  // 16: manager.InfoExamineResp.Data
 }
 var file_manager_proto_depIdxs = []int32{
 	2,  // 0: manager.InfoListResp.data:type_name -> manager.Data
@@ -1751,11 +1600,11 @@ var file_manager_proto_depIdxs = []int32{
 	0,  // 9: manager.manager.InfoList:input_type -> manager.InfoListReq
 	4,  // 10: manager.manager.InfoDetail:input_type -> manager.InfoDetailReq
 	12, // 11: manager.manager.InfoExamine:input_type -> manager.InfoExamineReq
-	17, // 12: manager.manager.InstitutionsFreeze:input_type -> manager.InstitutionsFreezeReq
+	15, // 12: manager.manager.InstitutionsFreeze:input_type -> manager.InstitutionsFreezeReq
 	1,  // 13: manager.manager.InfoList:output_type -> manager.InfoListResp
 	5,  // 14: manager.manager.InfoDetail:output_type -> manager.InfoDetailResp
 	13, // 15: manager.manager.InfoExamine:output_type -> manager.InfoExamineResp
-	16, // 16: manager.manager.InstitutionsFreeze:output_type -> manager.InfoResp
+	14, // 16: manager.manager.InstitutionsFreeze:output_type -> manager.InfoResp
 	13, // [13:17] is the sub-list for method output_type
 	9,  // [9:13] is the sub-list for method input_type
 	9,  // [9:9] is the sub-list for extension type_name
@@ -1938,30 +1787,6 @@ func file_manager_proto_init() {
 			}
 		}
 		file_manager_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*InfoStateReq); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_manager_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*InfoDataReq); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_manager_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
 			switch v := v.(*InfoResp); i {
 			case 0:
 				return &v.state
@@ -1973,7 +1798,7 @@ func file_manager_proto_init() {
 				return nil
 			}
 		}
-		file_manager_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
+		file_manager_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
 			switch v := v.(*InstitutionsFreezeReq); i {
 			case 0:
 				return &v.state
@@ -1985,7 +1810,7 @@ func file_manager_proto_init() {
 				return nil
 			}
 		}
-		file_manager_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
+		file_manager_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
 			switch v := v.(*InfoExamineResp_Data); i {
 			case 0:
 				return &v.state
@@ -2004,7 +1829,7 @@ func file_manager_proto_init() {
 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 			RawDescriptor: file_manager_proto_rawDesc,
 			NumEnums:      0,
-			NumMessages:   19,
+			NumMessages:   17,
 			NumExtensions: 0,
 			NumServices:   1,
 		},