-
Notifications
You must be signed in to change notification settings - Fork 12
/
UpdateMaintainPlanTopRequest.go
76 lines (71 loc) · 3.12 KB
/
UpdateMaintainPlanTopRequest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package iotticket
import (
"sync"
)
// UpdateMaintainPlanTopRequest 结构体
type UpdateMaintainPlanTopRequest struct {
// 维修项
IotMaintainPlanItemList []IotMaintainPlanItemTopRequest `json:"iot_maintain_plan_item_list,omitempty" xml:"iot_maintain_plan_item_list>iot_maintain_plan_item_top_request,omitempty"`
// 事件类型(需要映射)
EventTypeList []string `json:"event_type_list,omitempty" xml:"event_type_list>string,omitempty"`
// 操作人联系方式
OperatorPhone string `json:"operator_phone,omitempty" xml:"operator_phone,omitempty"`
// 操作人编码
OperatorId string `json:"operator_id,omitempty" xml:"operator_id,omitempty"`
// 操作人名称
OperatorName string `json:"operator_name,omitempty" xml:"operator_name,omitempty"`
// 服务商唯一编码
SpCode string `json:"sp_code,omitempty" xml:"sp_code,omitempty"`
// 运维方案:SEND_BACK_AND_SEND_OUT-客户寄回服务商寄出;SEND_OUT-服务商寄出;ONSITE-上门服务
MaintainAbilities string `json:"maintain_abilities,omitempty" xml:"maintain_abilities,omitempty"`
// 客户寄回设备 服务商收件人名称
ReceiverName string `json:"receiver_name,omitempty" xml:"receiver_name,omitempty"`
// 其它费用
OtherFee string `json:"other_fee,omitempty" xml:"other_fee,omitempty"`
// 客户寄回设备 服务商收货地址
ReceiverAddress string `json:"receiver_address,omitempty" xml:"receiver_address,omitempty"`
// 扩展字段
Features string `json:"features,omitempty" xml:"features,omitempty"`
// 维修方式(需要映射)
MaintainMethod string `json:"maintain_method,omitempty" xml:"maintain_method,omitempty"`
// 客户寄回设备 服务商联系方式
ReceiverPhone string `json:"receiver_phone,omitempty" xml:"receiver_phone,omitempty"`
// 支付方式:payBefore-维修前付费;payAfter-维修后付费;noNeedPay-无需付费
PayMethod string `json:"pay_method,omitempty" xml:"pay_method,omitempty"`
// 费用描述
FeeRemark string `json:"fee_remark,omitempty" xml:"fee_remark,omitempty"`
// 保内保外(需要映射)
WarrantyType string `json:"warranty_type,omitempty" xml:"warranty_type,omitempty"`
// 工单Id
TicketId int64 `json:"ticket_id,omitempty" xml:"ticket_id,omitempty"`
}
var poolUpdateMaintainPlanTopRequest = sync.Pool{
New: func() any {
return new(UpdateMaintainPlanTopRequest)
},
}
// GetUpdateMaintainPlanTopRequest() 从对象池中获取UpdateMaintainPlanTopRequest
func GetUpdateMaintainPlanTopRequest() *UpdateMaintainPlanTopRequest {
return poolUpdateMaintainPlanTopRequest.Get().(*UpdateMaintainPlanTopRequest)
}
// ReleaseUpdateMaintainPlanTopRequest 释放UpdateMaintainPlanTopRequest
func ReleaseUpdateMaintainPlanTopRequest(v *UpdateMaintainPlanTopRequest) {
v.IotMaintainPlanItemList = v.IotMaintainPlanItemList[:0]
v.EventTypeList = v.EventTypeList[:0]
v.OperatorPhone = ""
v.OperatorId = ""
v.OperatorName = ""
v.SpCode = ""
v.MaintainAbilities = ""
v.ReceiverName = ""
v.OtherFee = ""
v.ReceiverAddress = ""
v.Features = ""
v.MaintainMethod = ""
v.ReceiverPhone = ""
v.PayMethod = ""
v.FeeRemark = ""
v.WarrantyType = ""
v.TicketId = 0
poolUpdateMaintainPlanTopRequest.Put(v)
}