|
@@ -2,32 +2,32 @@
|
|
|
package types
|
|
|
|
|
|
type SubscribeReq struct {
|
|
|
- AppId string `header:"appId"`
|
|
|
- UserId string `header:"userId"`
|
|
|
- EntId string `header:"entId,optional"`
|
|
|
- EntUserId string `header:"entUserId,optional"`
|
|
|
- DeptId string `header:"deptId,optional"` //部门id
|
|
|
- PageNum int64 `json:"pageNum,optional"`
|
|
|
- PageSize int64 `json:"pageSize,optional"`
|
|
|
- SelectTime string `json:"selectTime,optional"`
|
|
|
- Area string `json:"area,optional"`
|
|
|
- City string `json:"city,optional"`
|
|
|
- Industry string `json:"industry,optional"`
|
|
|
- BuyerClass string `json:"buyerClass,optional"`
|
|
|
- KeyWords string `json:"keyWords,optional"`
|
|
|
- Subtype string `json:"subtype,optional"`
|
|
|
- Price string `json:"price,optional"`
|
|
|
- FileExists string `json:"fileExists,optional"`
|
|
|
- Source string `json:"source,optional"` //信息来源
|
|
|
- IsRead string `json:"isRead,optional"` //是否已读
|
|
|
- Staffs string `json:"staffs,optional"` //分发的员工
|
|
|
- UserType string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
|
|
|
- NewUserId int64 `header:"newUserId"`
|
|
|
- IsEnt bool `json:"isEnt,optional"`
|
|
|
- SelectIds string `json:"selectIds,optional"`
|
|
|
- PositionType int64 `header:"positionType,optional"`
|
|
|
- NotReturnCount int64 `json:"notReturnCount,optional"`
|
|
|
- Item string `json:"item,optional"`
|
|
|
+ AppId string `header:"appId"`
|
|
|
+ UserId string `header:"userId"`
|
|
|
+ EntId string `header:"entId,optional"`
|
|
|
+ EntUserId string `header:"entUserId,optional"`
|
|
|
+ DeptId string `header:"deptId,optional"` //部门id
|
|
|
+ PageNum int64 `json:"pageNum,optional"`
|
|
|
+ PageSize int64 `json:"pageSize,optional"`
|
|
|
+ SelectTime string `json:"selectTime,optional"`
|
|
|
+ Area string `json:"area,optional"`
|
|
|
+ City string `json:"city,optional"`
|
|
|
+ Industry string `json:"industry,optional"`
|
|
|
+ BuyerClass string `json:"buyerClass,optional"`
|
|
|
+ KeyWords string `json:"keyWords,optional"`
|
|
|
+ Subtype string `json:"subtype,optional"`
|
|
|
+ Price string `json:"price,optional"`
|
|
|
+ FileExists string `json:"fileExists,optional"`
|
|
|
+ Source string `json:"source,optional"` //信息来源
|
|
|
+ IsRead string `json:"isRead,optional"` //是否已读
|
|
|
+ Staffs string `json:"staffs,optional"` //分发的员工
|
|
|
+ UserType string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
|
|
|
+ NewUserId int64 `header:"newUserId"`
|
|
|
+ IsEnt bool `json:"isEnt,optional"`
|
|
|
+ SelectIds string `json:"selectIds,optional"`
|
|
|
+ PositionType int64 `header:"positionType,optional"`
|
|
|
+ NotReturnCount int64 `json:"notReturnCount,optional"`
|
|
|
+ Item map[string]interface{} `json:"item,optional"`
|
|
|
}
|
|
|
|
|
|
type SomeInfoReq struct {
|