|
@@ -9,10 +9,10 @@ type BCAction struct {
|
|
|
|
|
|
type LabelAction struct {
|
|
|
UserId string `header:"userId"`
|
|
|
- Lids string `json:"lids"` //标签ids
|
|
|
- Lname string `json:"lname"` //标签名称
|
|
|
- Binfo []string `json:"binfo"` //收藏的招标信息
|
|
|
- Laction string `json:"laction"` //用户行为:S添加或绑定标签;D删除标签
|
|
|
+ Lids string `json:"lids"` //标签ids
|
|
|
+ Lname string `json:"lname"` //标签名称
|
|
|
+ Binfo []string `json:"binfo,optional"` //收藏的招标信息
|
|
|
+ Laction string `json:"laction"` //用户行为:S添加或绑定标签;D删除标签
|
|
|
}
|
|
|
|
|
|
type GetLabelAction struct {
|
|
@@ -21,13 +21,13 @@ type GetLabelAction struct {
|
|
|
|
|
|
type List struct {
|
|
|
UserId string `header:"userId"`
|
|
|
- Pagenum int64 `json:"pagenum"` //页数
|
|
|
- Label string `json:"label"` //标签 用,分隔开
|
|
|
- SelectTime string `json:"selectTime"` //收藏时间
|
|
|
- Buyerclass string `json:"buyerclass"` //采购单位 用,分隔开
|
|
|
- BuyerPhone int64 `json:"buyerPhone"` //是否需要采购单位联系方式 1:需要 -1:不需要 0:未选中
|
|
|
- WinnerPhone int64 `json:"winnerPhone"` //是否需要中标单位联系方式 1:需要 -1:不需要 0:未选中
|
|
|
- Pagesize int64 `json:"pagesize"` //每页展示数量
|
|
|
+ Pagenum int64 `json:"pagenum"` //页数
|
|
|
+ Label string `json:"label"` //标签 用,分隔开
|
|
|
+ SelectTime string `json:"selectTime,optional"` //收藏时间
|
|
|
+ Buyerclass string `json:"buyerclass,optional"` //采购单位 用,分隔开
|
|
|
+ BuyerPhone int64 `json:"buyerPhone,optional"` //是否需要采购单位联系方式 1:需要 -1:不需要 0:未选中
|
|
|
+ WinnerPhone int64 `json:"winnerPhone,optional"` //是否需要中标单位联系方式 1:需要 -1:不需要 0:未选中
|
|
|
+ Pagesize int64 `json:"pagesize"` //每页展示数量
|
|
|
}
|
|
|
|
|
|
type AddLabel struct {
|