123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Contact struct {
- Person string `json:"person"`
- Phone string `json:"phone"`
- Overt int64 `json:"overt"`
- }
- type AssProjecctReq struct {
- UserId string `header:"userId"`
- AppId string `header:"appId"`
- Match string `json:"match,optional"`
- MsgType int64 `json:"msgType,optional"`
- EntId int64 `header:"entId"`
- Type int64 `json:"type,optional"`
- }
- type CommonReq struct {
- UserId string `json:"userId,optional"`
- EntId int64 `json:"entId,optional"`
- AppId string `json:"appId"`
- Match string `json:"match,optional"`
- MsgType int64 `json:"msgType,optional"`
- }
- type CommonRes struct {
- Err_code int `json:"error_code"`
- Err_msg string `json:"error_msg"`
- Data interface{} `json:"data"`
- }
- type InfoExamineReq struct {
- MsgId string `json:"msgId"`
- AppId string `json:"appId"`
- ReviewStatus int64 `json:"reviewStatus"`
- ReviewDetail string `json:"reviewDetail,optional"`
- MsgType int64 `json:"msgType"`
- Auditor string `json:"auditor"`
- }
- type InfoFileDelReq struct {
- FileName string `json:"fileName,optional"` //附件名称
- FileId string `json:"fileId,optional"` //附件key
- }
- type InfoListReq struct {
- AppId string `json:"appId":"appId"`
- MsgType int `json:"msgType,optional"`
- PhoneType int `json:"phoneType,optional"`
- Phone string `json:"phone,optional"`
- ReviewStatus int `json:"reviewStatus,optional"`
- ApplyStartTime string `json:"applyStartTime,optional"`
- ApplyEndTime string `json:"applyEndTime,optional"`
- PageSize int64 `json:"pageSize"`
- PageIndex int64 `json:"pageIndex"`
- IsDel string `json:"isDel,optional"`
- Published int64 `json:"published,optional"`
- JyPublishingMedia int64 `json:"jyPublishingMedia,optional"` //1需要 -1 不需要
- RecommendedService int64 `json:"recommendedService,optional"` //1需要 -1 不需要
- }
- type MyPublishCommonReq struct {
- MsgId string `json:"msgId"`
- UserId string `header:"userId"`
- Type int64 `json:"type"` //处理信息类型:([前端用户:]0:获取发布信息详情(默认);1:删除发布的信息;)
- MsgType int64 `json:"msgType,optional"`
- AppId string `header:"appId"`
- }
- type MyPublishListReq struct {
- UserId string `header:"userId"`
- AppId string `header:"appId"`
- Match string `json:"match,optional"`
- MsgType int64 `json:"msgType,optional"`
- ReviewStatus string `json:"reviewStatus,optional"`
- PageSize int `json:"pageSize,optional,default=10"`
- PageIndex int `json:"pageIndex,optional,default=1"`
- EntId int64 `header:"entId"`
- Classify int64 `json:"classify,optional"`
- }
- type OneKeyActionReq struct {
- MsgId string `json:"msgId"` //信息id
- UserId string `json:"userId"` //管理员用户id
- Type int64 `json:"type"` //处理信息类型:(()[管理后台:]1:管理后台一键敏感词过滤;1:管理后台一键发布)
- MsgType int64 `json:"msgType,optional"` //信息类型1:招标信息;2:采购信息;3:供应信息
- AppId string `json:"appId"` //appid
- EntName string `json:"entName"` //企业名称
- }
- type PubInfoReq struct {
- Title string `json:"title"`
- MsgType int64 `json:"msgType"`
- RelatedId string `json:"relatedId,optional"`
- Code string `json:"code,optional"`
- Province string `json:"province,optional"`
- City string `json:"city,optional"`
- Industry []string `json:"industry,optional"`
- Buyer string `json:"buyer,optional"`
- Budget string `json:"budget,optional"`
- Winner string `json:"winner,optional"`
- Amount string `json:"amount,optional"`
- Detail string `json:"detail"`
- Attach map[string]interface{} `json:"attach,optional"`
- Contact struct {
- Person string `json:"person"`
- Phone string `json:"phone"`
- Overt int64 `json:"overt"`
- } `json:"contact"`
- AppId string `header:"appId"`
- EntId int64 `header:"entId"`
- UserId string `header:"userId"`
- ValidityTime string `json:"validityTime,optional"`
- Phone string `header:"phone"`
- EntName string `header:"entName,optional"`
- JyPublishingMedia int64 `json:"jyPublishingMedia,optional"` //1需要 -1 不需要
- RecommendedService int64 `json:"recommendedService,optional"` //1需要 -1 不需要
- DeliveryAddress string `json:"recommendedService,optional"` //交付地址
- }
- type PubSupplyInfoReq struct {
- UserId string `header:"userId,optional"`
- Keywords string `json:"keywords"`
- SearchType string `json:"searchType"`
- Province string `json:"province,optional"`
- City string `json:"city,optional"`
- Time string `json:"time,optional"`
- Status string `json:"status,optional"`
- PageSize int64 `json:"pageSize,optional"`
- PageIndex int64 `json:"pageIndex,optional"`
- }
- type ReviewCommonReq struct {
- AppId string `header:"appId"`
- MsgId string `json:"msgId"`
- Type int64 `json:"type"`
- }
- type SupplyInfoDetailReq struct {
- MsgId string `json:"msgId"`
- MsgType int64 `json:"msgType"`
- }
- type UploadReq struct {
- FileName string `json:"fileName,optional"`
- }
|