alitrip_1_0

package
v1.5.36 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 3, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

This file is auto-generated, don't edit it. Thanks. *

*

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddCityCarApplyHeaders

type AddCityCarApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (AddCityCarApplyHeaders) GoString

func (s AddCityCarApplyHeaders) GoString() string

func (*AddCityCarApplyHeaders) SetCommonHeaders

func (s *AddCityCarApplyHeaders) SetCommonHeaders(v map[string]*string) *AddCityCarApplyHeaders

func (*AddCityCarApplyHeaders) SetXAcsDingtalkAccessToken

func (s *AddCityCarApplyHeaders) SetXAcsDingtalkAccessToken(v string) *AddCityCarApplyHeaders

func (AddCityCarApplyHeaders) String

func (s AddCityCarApplyHeaders) String() string

type AddCityCarApplyRequest

type AddCityCarApplyRequest struct {
	// 出差事由
	Cause *string `json:"cause,omitempty" xml:"cause,omitempty"`
	// 用车城市
	City *string `json:"city,omitempty" xml:"city,omitempty"`
	// 第三方企业ID
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 用车时间,按天管控,比如传值2021-03-18 20:26:56表示2021-03-18当天可用车,跨天情况配合finishedDate参数使用
	Date *string `json:"date,omitempty" xml:"date,omitempty"`
	// 用车截止时间,按天管控,比如date传值2021-03-18 20:26:56、finished_date传值2021-03-30 20:26:56表示2021-03-18(含)到2021-03-30(含)之间可用车,该参数不传值情况使用date作为用车截止时间;
	FinishedDate *string `json:"finishedDate,omitempty" xml:"finishedDate,omitempty"`
	// 审批单关联的项目code
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 审批单关联的项目名
	ProjectName *string `json:"projectName,omitempty" xml:"projectName,omitempty"`
	// 审批单状态:0-申请,1-同意,2-拒绝
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 三方审批单ID
	ThirdPartApplyId *string `json:"thirdPartApplyId,omitempty" xml:"thirdPartApplyId,omitempty"`
	// 审批单关联的三方成本中心ID
	ThirdPartCostCenterId *string `json:"thirdPartCostCenterId,omitempty" xml:"thirdPartCostCenterId,omitempty"`
	// 审批单关联的三方发票抬头ID
	ThirdPartInvoiceId *string `json:"thirdPartInvoiceId,omitempty" xml:"thirdPartInvoiceId,omitempty"`
	// 审批单可用总次数
	TimesTotal *int64 `json:"timesTotal,omitempty" xml:"timesTotal,omitempty"`
	// 审批单可用次数类型:1-次数不限制,2-用户可指定次数,3-管理员限制次数;如果企业没有限制审批单使用次数的需求,这个参数传1(次数不限制),同时times_total和times_used都传0即可
	TimesType *int64 `json:"timesType,omitempty" xml:"timesType,omitempty"`
	// 审批单已用次数
	TimesUsed *int64 `json:"timesUsed,omitempty" xml:"timesUsed,omitempty"`
	// 审批单标题
	Title *string `json:"title,omitempty" xml:"title,omitempty"`
	// 发起审批的第三方员工ID
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (AddCityCarApplyRequest) GoString

func (s AddCityCarApplyRequest) GoString() string

func (*AddCityCarApplyRequest) SetCause

func (*AddCityCarApplyRequest) SetCity

func (*AddCityCarApplyRequest) SetCorpId

func (*AddCityCarApplyRequest) SetDate

func (*AddCityCarApplyRequest) SetFinishedDate

func (s *AddCityCarApplyRequest) SetFinishedDate(v string) *AddCityCarApplyRequest

func (*AddCityCarApplyRequest) SetProjectCode

func (*AddCityCarApplyRequest) SetProjectName

func (*AddCityCarApplyRequest) SetStatus

func (*AddCityCarApplyRequest) SetThirdPartApplyId

func (s *AddCityCarApplyRequest) SetThirdPartApplyId(v string) *AddCityCarApplyRequest

func (*AddCityCarApplyRequest) SetThirdPartCostCenterId

func (s *AddCityCarApplyRequest) SetThirdPartCostCenterId(v string) *AddCityCarApplyRequest

func (*AddCityCarApplyRequest) SetThirdPartInvoiceId

func (s *AddCityCarApplyRequest) SetThirdPartInvoiceId(v string) *AddCityCarApplyRequest

func (*AddCityCarApplyRequest) SetTimesTotal

func (*AddCityCarApplyRequest) SetTimesType

func (*AddCityCarApplyRequest) SetTimesUsed

func (*AddCityCarApplyRequest) SetTitle

func (*AddCityCarApplyRequest) SetUserId

func (AddCityCarApplyRequest) String

func (s AddCityCarApplyRequest) String() string

type AddCityCarApplyResponse

type AddCityCarApplyResponse struct {
	Headers map[string]*string           `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *AddCityCarApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (AddCityCarApplyResponse) GoString

func (s AddCityCarApplyResponse) GoString() string

func (*AddCityCarApplyResponse) SetBody

func (*AddCityCarApplyResponse) SetHeaders

func (AddCityCarApplyResponse) String

func (s AddCityCarApplyResponse) String() string

type AddCityCarApplyResponseBody

type AddCityCarApplyResponseBody struct {
	// 商旅内部审批单ID
	ApplyId *int64 `json:"applyId,omitempty" xml:"applyId,omitempty"`
}

func (AddCityCarApplyResponseBody) GoString

func (s AddCityCarApplyResponseBody) GoString() string

func (*AddCityCarApplyResponseBody) SetApplyId

func (AddCityCarApplyResponseBody) String

type ApproveCityCarApplyHeaders

type ApproveCityCarApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (ApproveCityCarApplyHeaders) GoString

func (s ApproveCityCarApplyHeaders) GoString() string

func (*ApproveCityCarApplyHeaders) SetCommonHeaders

func (*ApproveCityCarApplyHeaders) SetXAcsDingtalkAccessToken

func (s *ApproveCityCarApplyHeaders) SetXAcsDingtalkAccessToken(v string) *ApproveCityCarApplyHeaders

func (ApproveCityCarApplyHeaders) String

type ApproveCityCarApplyRequest

type ApproveCityCarApplyRequest struct {
	// 第三方企业ID
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 审批时间
	OperateTime *string `json:"operateTime,omitempty" xml:"operateTime,omitempty"`
	// 审批备注
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 审批结果:1-同意,2-拒绝
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 第三方审批单ID
	ThirdPartApplyId *string `json:"thirdPartApplyId,omitempty" xml:"thirdPartApplyId,omitempty"`
	// 审批的第三方员工ID
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (ApproveCityCarApplyRequest) GoString

func (s ApproveCityCarApplyRequest) GoString() string

func (*ApproveCityCarApplyRequest) SetCorpId

func (*ApproveCityCarApplyRequest) SetOperateTime

func (*ApproveCityCarApplyRequest) SetRemark

func (*ApproveCityCarApplyRequest) SetStatus

func (*ApproveCityCarApplyRequest) SetThirdPartApplyId

func (*ApproveCityCarApplyRequest) SetUserId

func (ApproveCityCarApplyRequest) String

type ApproveCityCarApplyResponse

type ApproveCityCarApplyResponse struct {
	Headers map[string]*string               `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *ApproveCityCarApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (ApproveCityCarApplyResponse) GoString

func (s ApproveCityCarApplyResponse) GoString() string

func (*ApproveCityCarApplyResponse) SetBody

func (*ApproveCityCarApplyResponse) SetHeaders

func (ApproveCityCarApplyResponse) String

type ApproveCityCarApplyResponseBody

type ApproveCityCarApplyResponseBody struct {
	// 审批结果
	ApproveResult *bool `json:"approveResult,omitempty" xml:"approveResult,omitempty"`
}

func (ApproveCityCarApplyResponseBody) GoString

func (*ApproveCityCarApplyResponseBody) SetApproveResult

func (ApproveCityCarApplyResponseBody) String

type BillSettementBtripTrainHeaders

type BillSettementBtripTrainHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (BillSettementBtripTrainHeaders) GoString

func (*BillSettementBtripTrainHeaders) SetCommonHeaders

func (*BillSettementBtripTrainHeaders) SetXAcsDingtalkAccessToken

func (s *BillSettementBtripTrainHeaders) SetXAcsDingtalkAccessToken(v string) *BillSettementBtripTrainHeaders

func (BillSettementBtripTrainHeaders) String

type BillSettementBtripTrainRequest

type BillSettementBtripTrainRequest struct {
	Category    *int64  `json:"category,omitempty" xml:"category,omitempty"`
	CorpId      *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	PageNumber  *int64  `json:"pageNumber,omitempty" xml:"pageNumber,omitempty"`
	PageSize    *int64  `json:"pageSize,omitempty" xml:"pageSize,omitempty"`
	PeriodEnd   *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
}

func (BillSettementBtripTrainRequest) GoString

func (*BillSettementBtripTrainRequest) SetCategory

func (*BillSettementBtripTrainRequest) SetCorpId

func (*BillSettementBtripTrainRequest) SetPageNumber

func (*BillSettementBtripTrainRequest) SetPageSize

func (*BillSettementBtripTrainRequest) SetPeriodEnd

func (*BillSettementBtripTrainRequest) SetPeriodStart

func (BillSettementBtripTrainRequest) String

type BillSettementBtripTrainResponse

type BillSettementBtripTrainResponse struct {
	Headers map[string]*string                   `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *BillSettementBtripTrainResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (BillSettementBtripTrainResponse) GoString

func (*BillSettementBtripTrainResponse) SetHeaders

func (BillSettementBtripTrainResponse) String

type BillSettementBtripTrainResponseBody

type BillSettementBtripTrainResponseBody struct {
	// module
	Module *BillSettementBtripTrainResponseBodyModule `json:"module,omitempty" xml:"module,omitempty" type:"Struct"`
	// 结果code
	ResultCode *int64 `json:"resultCode,omitempty" xml:"resultCode,omitempty"`
	// 结果msg
	ResultMsg *string `json:"resultMsg,omitempty" xml:"resultMsg,omitempty"`
	// 是否成功
	Success *bool `json:"success,omitempty" xml:"success,omitempty"`
}

func (BillSettementBtripTrainResponseBody) GoString

func (*BillSettementBtripTrainResponseBody) SetResultCode

func (*BillSettementBtripTrainResponseBody) SetResultMsg

func (*BillSettementBtripTrainResponseBody) SetSuccess

func (BillSettementBtripTrainResponseBody) String

type BillSettementBtripTrainResponseBodyModule

type BillSettementBtripTrainResponseBodyModule struct {
	// 类目
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 数据集合
	DataList []*BillSettementBtripTrainResponseBodyModuleDataList `json:"dataList,omitempty" xml:"dataList,omitempty" type:"Repeated"`
	// 记账更新开始时间
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新结束时间
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
	// 总数据量
	TotalNum *int64 `json:"totalNum,omitempty" xml:"totalNum,omitempty"`
}

func (BillSettementBtripTrainResponseBodyModule) GoString

func (*BillSettementBtripTrainResponseBodyModule) SetCategory

func (*BillSettementBtripTrainResponseBodyModule) SetCorpId

func (*BillSettementBtripTrainResponseBodyModule) SetPeriodEnd

func (*BillSettementBtripTrainResponseBodyModule) SetPeriodStart

func (*BillSettementBtripTrainResponseBodyModule) SetTotalNum

func (BillSettementBtripTrainResponseBodyModule) String

type BillSettementBtripTrainResponseBodyModuleDataList

type BillSettementBtripTrainResponseBodyModuleDataList struct {
	// 交易流水号
	AlipayTradeNo *string `json:"alipayTradeNo,omitempty" xml:"alipayTradeNo,omitempty"`
	// 审批单号
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 到达日期
	ArrDate *string `json:"arrDate,omitempty" xml:"arrDate,omitempty"`
	// 到达站点
	ArrStation *string `json:"arrStation,omitempty" xml:"arrStation,omitempty"`
	// 到达时间
	ArrTime *string `json:"arrTime,omitempty" xml:"arrTime,omitempty"`
	// 入账时间
	BillRecordTime *string `json:"billRecordTime,omitempty" xml:"billRecordTime,omitempty"`
	// 预定时间
	BookTime *string `json:"bookTime,omitempty" xml:"bookTime,omitempty"`
	// 预定人use id
	BookerId *string `json:"bookerId,omitempty" xml:"bookerId,omitempty"`
	// 预订人工号
	BookerJobNo *string `json:"bookerJobNo,omitempty" xml:"bookerJobNo,omitempty"`
	// 预订人名称
	BookerName *string `json:"bookerName,omitempty" xml:"bookerName,omitempty"`
	// 资金方向
	CapitalDirection *string `json:"capitalDirection,omitempty" xml:"capitalDirection,omitempty"`
	// 级联部门
	CascadeDepartment *string `json:"cascadeDepartment,omitempty" xml:"cascadeDepartment,omitempty"`
	// 改签手续费
	ChangeFee *float64 `json:"changeFee,omitempty" xml:"changeFee,omitempty"`
	// 成本中心名称
	CostCenter *string `json:"costCenter,omitempty" xml:"costCenter,omitempty"`
	// 成本中心编码
	CostCenterNumber *string `json:"costCenterNumber,omitempty" xml:"costCenterNumber,omitempty"`
	// 折扣率
	Coupon *float64 `json:"coupon,omitempty" xml:"coupon,omitempty"`
	// 末级部门
	Department *string `json:"department,omitempty" xml:"department,omitempty"`
	// 部门id
	DepartmentId *string `json:"departmentId,omitempty" xml:"departmentId,omitempty"`
	// 出发日期
	DeptDate *string `json:"deptDate,omitempty" xml:"deptDate,omitempty"`
	// 出发站
	DeptStation *string `json:"deptStation,omitempty" xml:"deptStation,omitempty"`
	// 出发时间
	DeptTime *string `json:"deptTime,omitempty" xml:"deptTime,omitempty"`
	// 费用类型
	FeeType *string `json:"feeType,omitempty" xml:"feeType,omitempty"`
	// 序号
	Index *string `json:"index,omitempty" xml:"index,omitempty"`
	// 发票抬头
	InvoiceTitle *string `json:"invoiceTitle,omitempty" xml:"invoiceTitle,omitempty"`
	// 订单号
	OrderId *string `json:"orderId,omitempty" xml:"orderId,omitempty"`
	// 订单金额
	OrderPrice *float64 `json:"orderPrice,omitempty" xml:"orderPrice,omitempty"`
	// 超标审批单号
	OverApplyId *string `json:"overApplyId,omitempty" xml:"overApplyId,omitempty"`
	// 主键id
	PrimaryId *int64 `json:"primaryId,omitempty" xml:"primaryId,omitempty"`
	// 项目编号
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 项目名称
	ProjectName *string `json:"projectName,omitempty" xml:"projectName,omitempty"`
	// 退款手续费
	RefundFee *float64 `json:"refundFee,omitempty" xml:"refundFee,omitempty"`
	// 备注
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 运行时长
	RunTime *string `json:"runTime,omitempty" xml:"runTime,omitempty"`
	// 座位号
	SeatNo *string `json:"seatNo,omitempty" xml:"seatNo,omitempty"`
	// 坐席
	SeatType *string `json:"seatType,omitempty" xml:"seatType,omitempty"`
	// 服务费,仅在feeType 6007、6008中展示
	ServiceFee *float64 `json:"serviceFee,omitempty" xml:"serviceFee,omitempty"`
	// 结算金额
	SettlementFee *float64 `json:"settlementFee,omitempty" xml:"settlementFee,omitempty"`
	// 预存赠送金额消费
	SettlementGrantFee *float64 `json:"settlementGrantFee,omitempty" xml:"settlementGrantFee,omitempty"`
	// 结算时间
	SettlementTime *string `json:"settlementTime,omitempty" xml:"settlementTime,omitempty"`
	// 结算类型
	SettlementType *string `json:"settlementType,omitempty" xml:"settlementType,omitempty"`
	// 入账状态
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 票面票号
	TicketNo *string `json:"ticketNo,omitempty" xml:"ticketNo,omitempty"`
	// 票价
	TicketPrice *float64 `json:"ticketPrice,omitempty" xml:"ticketPrice,omitempty"`
	// 车次号
	TrainNo *string `json:"trainNo,omitempty" xml:"trainNo,omitempty"`
	// 车次类型
	TrainType *string `json:"trainType,omitempty" xml:"trainType,omitempty"`
	// 出行人useId
	TravelerId *string `json:"travelerId,omitempty" xml:"travelerId,omitempty"`
	// 出行人工号
	TravelerJobNo *string `json:"travelerJobNo,omitempty" xml:"travelerJobNo,omitempty"`
	// 出行人名称
	TravelerName *string `json:"travelerName,omitempty" xml:"travelerName,omitempty"`
	// 发票类型
	VoucherType *int64 `json:"voucherType,omitempty" xml:"voucherType,omitempty"`
}

func (BillSettementBtripTrainResponseBodyModuleDataList) GoString

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetAlipayTradeNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetApplyId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetArrDate

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetArrStation

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetArrTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetBillRecordTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetBookTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetBookerId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetBookerJobNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetBookerName

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetCapitalDirection

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetCascadeDepartment

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetChangeFee

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetCostCenter

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetCostCenterNumber

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetCoupon

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetDepartment

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetDepartmentId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetDeptDate

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetDeptStation

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetDeptTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetFeeType

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetIndex

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetInvoiceTitle

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetOrderId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetOrderPrice

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetOverApplyId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetPrimaryId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetProjectCode

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetProjectName

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetRefundFee

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetRemark

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetRunTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSeatNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSeatType

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetServiceFee

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSettlementFee

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSettlementGrantFee

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSettlementTime

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetSettlementType

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetStatus

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTicketNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTicketPrice

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTrainNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTrainType

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTravelerId

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTravelerJobNo

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetTravelerName

func (*BillSettementBtripTrainResponseBodyModuleDataList) SetVoucherType

func (BillSettementBtripTrainResponseBodyModuleDataList) String

type BillSettementCarHeaders

type BillSettementCarHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (BillSettementCarHeaders) GoString

func (s BillSettementCarHeaders) GoString() string

func (*BillSettementCarHeaders) SetCommonHeaders

func (s *BillSettementCarHeaders) SetCommonHeaders(v map[string]*string) *BillSettementCarHeaders

func (*BillSettementCarHeaders) SetXAcsDingtalkAccessToken

func (s *BillSettementCarHeaders) SetXAcsDingtalkAccessToken(v string) *BillSettementCarHeaders

func (BillSettementCarHeaders) String

func (s BillSettementCarHeaders) String() string

type BillSettementCarRequest

type BillSettementCarRequest struct {
	Category    *int64  `json:"category,omitempty" xml:"category,omitempty"`
	CorpId      *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	PageNumber  *int64  `json:"pageNumber,omitempty" xml:"pageNumber,omitempty"`
	PageSize    *int64  `json:"pageSize,omitempty" xml:"pageSize,omitempty"`
	PeriodEnd   *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
}

func (BillSettementCarRequest) GoString

func (s BillSettementCarRequest) GoString() string

func (*BillSettementCarRequest) SetCategory

func (*BillSettementCarRequest) SetCorpId

func (*BillSettementCarRequest) SetPageNumber

func (*BillSettementCarRequest) SetPageSize

func (*BillSettementCarRequest) SetPeriodEnd

func (*BillSettementCarRequest) SetPeriodStart

func (BillSettementCarRequest) String

func (s BillSettementCarRequest) String() string

type BillSettementCarResponse

type BillSettementCarResponse struct {
	Headers map[string]*string            `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *BillSettementCarResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (BillSettementCarResponse) GoString

func (s BillSettementCarResponse) GoString() string

func (*BillSettementCarResponse) SetBody

func (*BillSettementCarResponse) SetHeaders

func (BillSettementCarResponse) String

func (s BillSettementCarResponse) String() string

type BillSettementCarResponseBody

type BillSettementCarResponseBody struct {
	// module
	Module *BillSettementCarResponseBodyModule `json:"module,omitempty" xml:"module,omitempty" type:"Struct"`
	// 结果code
	ResultCode *int64 `json:"resultCode,omitempty" xml:"resultCode,omitempty"`
	// 结果msg
	ResultMsg *string `json:"resultMsg,omitempty" xml:"resultMsg,omitempty"`
	// 是否成功
	Success *bool `json:"success,omitempty" xml:"success,omitempty"`
}

func (BillSettementCarResponseBody) GoString

func (s BillSettementCarResponseBody) GoString() string

func (*BillSettementCarResponseBody) SetModule

func (*BillSettementCarResponseBody) SetResultCode

func (*BillSettementCarResponseBody) SetResultMsg

func (*BillSettementCarResponseBody) SetSuccess

func (BillSettementCarResponseBody) String

type BillSettementCarResponseBodyModule

type BillSettementCarResponseBodyModule struct {
	// 类目
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 数据集合
	DataList []*BillSettementCarResponseBodyModuleDataList `json:"dataList,omitempty" xml:"dataList,omitempty" type:"Repeated"`
	// 记账更新开始日期
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新结束日期
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
	// 总数量
	TotalNum *int64 `json:"totalNum,omitempty" xml:"totalNum,omitempty"`
}

func (BillSettementCarResponseBodyModule) GoString

func (*BillSettementCarResponseBodyModule) SetCategory

func (*BillSettementCarResponseBodyModule) SetCorpId

func (*BillSettementCarResponseBodyModule) SetPeriodEnd

func (*BillSettementCarResponseBodyModule) SetPeriodStart

func (*BillSettementCarResponseBodyModule) SetTotalNum

func (BillSettementCarResponseBodyModule) String

type BillSettementCarResponseBodyModuleDataList

type BillSettementCarResponseBodyModuleDataList struct {
	// 支付交易流水号
	AlipayTradeNo *string `json:"alipayTradeNo,omitempty" xml:"alipayTradeNo,omitempty"`
	// 审批单号
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 到达城市
	ArrCity *string `json:"arrCity,omitempty" xml:"arrCity,omitempty"`
	// 到达日期
	ArrDate *string `json:"arrDate,omitempty" xml:"arrDate,omitempty"`
	// 到达地
	ArrLocation *string `json:"arrLocation,omitempty" xml:"arrLocation,omitempty"`
	// 到达时间
	ArrTime *string `json:"arrTime,omitempty" xml:"arrTime,omitempty"`
	// 入账时间
	BillRecordTime *string `json:"billRecordTime,omitempty" xml:"billRecordTime,omitempty"`
	// 预定时间
	BookTime *string `json:"bookTime,omitempty" xml:"bookTime,omitempty"`
	// 预定人use id
	BookerId *string `json:"bookerId,omitempty" xml:"bookerId,omitempty"`
	// 预订人工号
	BookerJobNo *string `json:"bookerJobNo,omitempty" xml:"bookerJobNo,omitempty"`
	// 预订人名称
	BookerName *string `json:"bookerName,omitempty" xml:"bookerName,omitempty"`
	// 用车事由
	BusinessCategory *string `json:"businessCategory,omitempty" xml:"businessCategory,omitempty"`
	// 资金方向
	CapitalDirection *string `json:"capitalDirection,omitempty" xml:"capitalDirection,omitempty"`
	// 车型
	CarLevel *string `json:"carLevel,omitempty" xml:"carLevel,omitempty"`
	// 级联部门
	CascadeDepartment *string `json:"cascadeDepartment,omitempty" xml:"cascadeDepartment,omitempty"`
	// 成本中心名称
	CostCenter *string `json:"costCenter,omitempty" xml:"costCenter,omitempty"`
	// 成本中心编号
	CostCenterNumber *string `json:"costCenterNumber,omitempty" xml:"costCenterNumber,omitempty"`
	// 优惠券
	Coupon *float64 `json:"coupon,omitempty" xml:"coupon,omitempty"`
	// 优惠金额
	CouponPrice *float64 `json:"couponPrice,omitempty" xml:"couponPrice,omitempty"`
	// 末级部门
	Department *string `json:"department,omitempty" xml:"department,omitempty"`
	// 部门id
	DepartmentId *string `json:"departmentId,omitempty" xml:"departmentId,omitempty"`
	// 出发城市
	DeptCity *string `json:"deptCity,omitempty" xml:"deptCity,omitempty"`
	// 出发日期
	DeptDate *string `json:"deptDate,omitempty" xml:"deptDate,omitempty"`
	// 出发地
	DeptLocation *string `json:"deptLocation,omitempty" xml:"deptLocation,omitempty"`
	// 出发时间
	DeptTime *string `json:"deptTime,omitempty" xml:"deptTime,omitempty"`
	// 预估行驶距离
	EstimateDriveDistance *string `json:"estimateDriveDistance,omitempty" xml:"estimateDriveDistance,omitempty"`
	// 预估金额
	EstimatePrice *float64 `json:"estimatePrice,omitempty" xml:"estimatePrice,omitempty"`
	// 费用类型
	FeeType *string `json:"feeType,omitempty" xml:"feeType,omitempty"`
	// 序号
	Index *string `json:"index,omitempty" xml:"index,omitempty"`
	// 发票抬头
	InvoiceTitle *string `json:"invoiceTitle,omitempty" xml:"invoiceTitle,omitempty"`
	// 用车事由
	Memo *string `json:"memo,omitempty" xml:"memo,omitempty"`
	// 订单id
	OrderId *string `json:"orderId,omitempty" xml:"orderId,omitempty"`
	// 订单金额
	OrderPrice *float64 `json:"orderPrice,omitempty" xml:"orderPrice,omitempty"`
	// 超标审批单号
	OverApplyId *string `json:"overApplyId,omitempty" xml:"overApplyId,omitempty"`
	// 个人支付金额
	PersonSettleFee *float64 `json:"personSettleFee,omitempty" xml:"personSettleFee,omitempty"`
	PrimaryId       *string  `json:"primaryId,omitempty" xml:"primaryId,omitempty"`
	// 项目编码
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 项目名称
	ProjectName *string `json:"projectName,omitempty" xml:"projectName,omitempty"`
	// 供应商
	ProviderName *string `json:"providerName,omitempty" xml:"providerName,omitempty"`
	// 实际行驶距离
	RealDriveDistance *string `json:"realDriveDistance,omitempty" xml:"realDriveDistance,omitempty"`
	// 实际上车点
	RealFromAddr *string `json:"realFromAddr,omitempty" xml:"realFromAddr,omitempty"`
	// 实际下车点
	RealToAddr *string `json:"realToAddr,omitempty" xml:"realToAddr,omitempty"`
	// 备注
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 服务费,仅在feeType 40111 中展示
	ServiceFee *string `json:"serviceFee,omitempty" xml:"serviceFee,omitempty"`
	// 结算金额
	SettlementFee *float64 `json:"settlementFee,omitempty" xml:"settlementFee,omitempty"`
	// 预存赠送金额消费
	SettlementGrantFee *float64 `json:"settlementGrantFee,omitempty" xml:"settlementGrantFee,omitempty"`
	// 结算时间
	SettlementTime *string `json:"settlementTime,omitempty" xml:"settlementTime,omitempty"`
	// 结算类型
	SettlementType *string `json:"settlementType,omitempty" xml:"settlementType,omitempty"`
	// 特别关注订单
	SpecialOrder *string `json:"specialOrder,omitempty" xml:"specialOrder,omitempty"`
	// 特别关注原因
	SpecialReason *string `json:"specialReason,omitempty" xml:"specialReason,omitempty"`
	// 入账状态
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 子订单号
	SubOrderId *string `json:"subOrderId,omitempty" xml:"subOrderId,omitempty"`
	// 出行人use id
	TravelerId *string `json:"travelerId,omitempty" xml:"travelerId,omitempty"`
	// 出行人工号
	TravelerJobNo *string `json:"travelerJobNo,omitempty" xml:"travelerJobNo,omitempty"`
	// 出行人名称
	TravelerName *string `json:"travelerName,omitempty" xml:"travelerName,omitempty"`
	// 员工是否认可
	UserConfirmDesc *string `json:"userConfirmDesc,omitempty" xml:"userConfirmDesc,omitempty"`
	// 发票类型
	VoucherType *int64 `json:"voucherType,omitempty" xml:"voucherType,omitempty"`
}

func (BillSettementCarResponseBodyModuleDataList) GoString

func (*BillSettementCarResponseBodyModuleDataList) SetAlipayTradeNo

func (*BillSettementCarResponseBodyModuleDataList) SetApplyId

func (*BillSettementCarResponseBodyModuleDataList) SetArrCity

func (*BillSettementCarResponseBodyModuleDataList) SetArrDate

func (*BillSettementCarResponseBodyModuleDataList) SetArrLocation

func (*BillSettementCarResponseBodyModuleDataList) SetArrTime

func (*BillSettementCarResponseBodyModuleDataList) SetBillRecordTime

func (*BillSettementCarResponseBodyModuleDataList) SetBookTime

func (*BillSettementCarResponseBodyModuleDataList) SetBookerId

func (*BillSettementCarResponseBodyModuleDataList) SetBookerJobNo

func (*BillSettementCarResponseBodyModuleDataList) SetBookerName

func (*BillSettementCarResponseBodyModuleDataList) SetBusinessCategory

func (*BillSettementCarResponseBodyModuleDataList) SetCapitalDirection

func (*BillSettementCarResponseBodyModuleDataList) SetCarLevel

func (*BillSettementCarResponseBodyModuleDataList) SetCascadeDepartment

func (*BillSettementCarResponseBodyModuleDataList) SetCostCenter

func (*BillSettementCarResponseBodyModuleDataList) SetCostCenterNumber

func (*BillSettementCarResponseBodyModuleDataList) SetCoupon

func (*BillSettementCarResponseBodyModuleDataList) SetCouponPrice

func (*BillSettementCarResponseBodyModuleDataList) SetDepartment

func (*BillSettementCarResponseBodyModuleDataList) SetDepartmentId

func (*BillSettementCarResponseBodyModuleDataList) SetDeptCity

func (*BillSettementCarResponseBodyModuleDataList) SetDeptDate

func (*BillSettementCarResponseBodyModuleDataList) SetDeptLocation

func (*BillSettementCarResponseBodyModuleDataList) SetDeptTime

func (*BillSettementCarResponseBodyModuleDataList) SetEstimateDriveDistance

func (*BillSettementCarResponseBodyModuleDataList) SetEstimatePrice

func (*BillSettementCarResponseBodyModuleDataList) SetFeeType

func (*BillSettementCarResponseBodyModuleDataList) SetIndex

func (*BillSettementCarResponseBodyModuleDataList) SetInvoiceTitle

func (*BillSettementCarResponseBodyModuleDataList) SetMemo

func (*BillSettementCarResponseBodyModuleDataList) SetOrderId

func (*BillSettementCarResponseBodyModuleDataList) SetOrderPrice

func (*BillSettementCarResponseBodyModuleDataList) SetOverApplyId

func (*BillSettementCarResponseBodyModuleDataList) SetPersonSettleFee

func (*BillSettementCarResponseBodyModuleDataList) SetPrimaryId

func (*BillSettementCarResponseBodyModuleDataList) SetProjectCode

func (*BillSettementCarResponseBodyModuleDataList) SetProjectName

func (*BillSettementCarResponseBodyModuleDataList) SetProviderName

func (*BillSettementCarResponseBodyModuleDataList) SetRealDriveDistance

func (*BillSettementCarResponseBodyModuleDataList) SetRealFromAddr

func (*BillSettementCarResponseBodyModuleDataList) SetRealToAddr

func (*BillSettementCarResponseBodyModuleDataList) SetRemark

func (*BillSettementCarResponseBodyModuleDataList) SetServiceFee

func (*BillSettementCarResponseBodyModuleDataList) SetSettlementFee

func (*BillSettementCarResponseBodyModuleDataList) SetSettlementGrantFee

func (*BillSettementCarResponseBodyModuleDataList) SetSettlementTime

func (*BillSettementCarResponseBodyModuleDataList) SetSettlementType

func (*BillSettementCarResponseBodyModuleDataList) SetSpecialOrder

func (*BillSettementCarResponseBodyModuleDataList) SetSpecialReason

func (*BillSettementCarResponseBodyModuleDataList) SetStatus

func (*BillSettementCarResponseBodyModuleDataList) SetSubOrderId

func (*BillSettementCarResponseBodyModuleDataList) SetTravelerId

func (*BillSettementCarResponseBodyModuleDataList) SetTravelerJobNo

func (*BillSettementCarResponseBodyModuleDataList) SetTravelerName

func (*BillSettementCarResponseBodyModuleDataList) SetUserConfirmDesc

func (*BillSettementCarResponseBodyModuleDataList) SetVoucherType

func (BillSettementCarResponseBodyModuleDataList) String

type BillSettementFlightHeaders

type BillSettementFlightHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (BillSettementFlightHeaders) GoString

func (s BillSettementFlightHeaders) GoString() string

func (*BillSettementFlightHeaders) SetCommonHeaders

func (*BillSettementFlightHeaders) SetXAcsDingtalkAccessToken

func (s *BillSettementFlightHeaders) SetXAcsDingtalkAccessToken(v string) *BillSettementFlightHeaders

func (BillSettementFlightHeaders) String

type BillSettementFlightRequest

type BillSettementFlightRequest struct {
	// 类目:机酒火车 1:机票; 2:酒店; 4:用车 6:商旅火车票
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 第三方企业ID
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 页数,从1开始
	PageNumber *int64 `json:"pageNumber,omitempty" xml:"pageNumber,omitempty"`
	// 每页数据量,默认100,最高500
	PageSize *int64 `json:"pageSize,omitempty" xml:"pageSize,omitempty"`
	// 记账更新结束日期
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新开始日期
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
}

func (BillSettementFlightRequest) GoString

func (s BillSettementFlightRequest) GoString() string

func (*BillSettementFlightRequest) SetCategory

func (*BillSettementFlightRequest) SetCorpId

func (*BillSettementFlightRequest) SetPageNumber

func (*BillSettementFlightRequest) SetPageSize

func (*BillSettementFlightRequest) SetPeriodEnd

func (*BillSettementFlightRequest) SetPeriodStart

func (BillSettementFlightRequest) String

type BillSettementFlightResponse

type BillSettementFlightResponse struct {
	Headers map[string]*string               `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *BillSettementFlightResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (BillSettementFlightResponse) GoString

func (s BillSettementFlightResponse) GoString() string

func (*BillSettementFlightResponse) SetBody

func (*BillSettementFlightResponse) SetHeaders

func (BillSettementFlightResponse) String

type BillSettementFlightResponseBody

type BillSettementFlightResponseBody struct {
	// module
	Module *BillSettementFlightResponseBodyModule `json:"module,omitempty" xml:"module,omitempty" type:"Struct"`
	// 结果code
	ResultCode *int64 `json:"resultCode,omitempty" xml:"resultCode,omitempty"`
	// 结果msg
	ResultMsg *string `json:"resultMsg,omitempty" xml:"resultMsg,omitempty"`
	// 是否成功
	Success *bool `json:"success,omitempty" xml:"success,omitempty"`
}

func (BillSettementFlightResponseBody) GoString

func (*BillSettementFlightResponseBody) SetResultCode

func (*BillSettementFlightResponseBody) SetResultMsg

func (*BillSettementFlightResponseBody) SetSuccess

func (BillSettementFlightResponseBody) String

type BillSettementFlightResponseBodyModule

type BillSettementFlightResponseBodyModule struct {
	// 类目
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 数据集合
	DataList []*BillSettementFlightResponseBodyModuleDataList `json:"dataList,omitempty" xml:"dataList,omitempty" type:"Repeated"`
	// 记账更新开始日期
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新结束日期
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
	// 总数据量
	TotalNum *int64 `json:"totalNum,omitempty" xml:"totalNum,omitempty"`
}

func (BillSettementFlightResponseBodyModule) GoString

func (*BillSettementFlightResponseBodyModule) SetCategory

func (*BillSettementFlightResponseBodyModule) SetCorpId

func (*BillSettementFlightResponseBodyModule) SetPeriodEnd

func (*BillSettementFlightResponseBodyModule) SetPeriodStart

func (*BillSettementFlightResponseBodyModule) SetTotalNum

func (BillSettementFlightResponseBodyModule) String

type BillSettementFlightResponseBodyModuleDataList

type BillSettementFlightResponseBodyModuleDataList struct {
	// 提前预定天数
	AdvanceDay *int64 `json:"advanceDay,omitempty" xml:"advanceDay,omitempty"`
	// 航司三字码
	AirlineCorpCode *string `json:"airlineCorpCode,omitempty" xml:"airlineCorpCode,omitempty"`
	// 航司名称
	AirlineCorpName *string `json:"airlineCorpName,omitempty" xml:"airlineCorpName,omitempty"`
	// 交易流水号
	AlipayTradeNo *string `json:"alipayTradeNo,omitempty" xml:"alipayTradeNo,omitempty"`
	// 审批单号
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 到达机场二字码
	ArrAirportCode *string `json:"arrAirportCode,omitempty" xml:"arrAirportCode,omitempty"`
	// 到达城市
	ArrCity *string `json:"arrCity,omitempty" xml:"arrCity,omitempty"`
	// 到达日期
	ArrDate *string `json:"arrDate,omitempty" xml:"arrDate,omitempty"`
	// 到达机场
	ArrStation *string `json:"arrStation,omitempty" xml:"arrStation,omitempty"`
	// 到达时间
	ArrTime *string `json:"arrTime,omitempty" xml:"arrTime,omitempty"`
	// 入账时间
	BillRecordTime *string `json:"billRecordTime,omitempty" xml:"billRecordTime,omitempty"`
	// 预定时间
	BookTime *string `json:"bookTime,omitempty" xml:"bookTime,omitempty"`
	// 预订人use id
	BookerId *string `json:"bookerId,omitempty" xml:"bookerId,omitempty"`
	// 预订人工号
	BookerJobNo *string `json:"bookerJobNo,omitempty" xml:"bookerJobNo,omitempty"`
	// 预订人名称
	BookerName *string `json:"bookerName,omitempty" xml:"bookerName,omitempty"`
	// 商旅优惠金额
	BtripCouponFee *float64 `json:"btripCouponFee,omitempty" xml:"btripCouponFee,omitempty"`
	// 基建费
	BuildFee *float64 `json:"buildFee,omitempty" xml:"buildFee,omitempty"`
	// 舱位
	Cabin *string `json:"cabin,omitempty" xml:"cabin,omitempty"`
	// 舱位码
	CabinClass *string `json:"cabinClass,omitempty" xml:"cabinClass,omitempty"`
	// 资金方向
	CapitalDirection *string `json:"capitalDirection,omitempty" xml:"capitalDirection,omitempty"`
	// 级联部门
	CascadeDepartment *string `json:"cascadeDepartment,omitempty" xml:"cascadeDepartment,omitempty"`
	// 改签费用
	ChangeFee *float64 `json:"changeFee,omitempty" xml:"changeFee,omitempty"`
	// 订单金额
	CorpPayOrderFee *float64 `json:"corpPayOrderFee,omitempty" xml:"corpPayOrderFee,omitempty"`
	// 成本中心名称
	CostCenter *string `json:"costCenter,omitempty" xml:"costCenter,omitempty"`
	// 成本中心编号
	CostCenterNumber *string `json:"costCenterNumber,omitempty" xml:"costCenterNumber,omitempty"`
	// 优惠券
	Coupon *float64 `json:"coupon,omitempty" xml:"coupon,omitempty"`
	// 起飞机场二字码
	DepAirportCode *string `json:"depAirportCode,omitempty" xml:"depAirportCode,omitempty"`
	// 末级部门
	Department *string `json:"department,omitempty" xml:"department,omitempty"`
	// 部门id
	DepartmentId *string `json:"departmentId,omitempty" xml:"departmentId,omitempty"`
	// 起飞城市
	DeptCity *string `json:"deptCity,omitempty" xml:"deptCity,omitempty"`
	// 起飞日期
	DeptDate *string `json:"deptDate,omitempty" xml:"deptDate,omitempty"`
	// 起飞机场
	DeptStation *string `json:"deptStation,omitempty" xml:"deptStation,omitempty"`
	// 起飞时间
	DeptTime *string `json:"deptTime,omitempty" xml:"deptTime,omitempty"`
	// 折扣率
	Discount *string `json:"discount,omitempty" xml:"discount,omitempty"`
	// 费用类型
	FeeType *string `json:"feeType,omitempty" xml:"feeType,omitempty"`
	// 航班号
	FlightNo *string `json:"flightNo,omitempty" xml:"flightNo,omitempty"`
	// 序号
	Index *string `json:"index,omitempty" xml:"index,omitempty"`
	// 保险费
	InsuranceFee *float64 `json:"insuranceFee,omitempty" xml:"insuranceFee,omitempty"`
	// 发票抬头
	InvoiceTitle *string `json:"invoiceTitle,omitempty" xml:"invoiceTitle,omitempty"`
	// 行程单打印序号
	ItineraryNum *string `json:"itineraryNum,omitempty" xml:"itineraryNum,omitempty"`
	// 行程单金额
	ItineraryPrice *float64 `json:"itineraryPrice,omitempty" xml:"itineraryPrice,omitempty"`
	// 低价提醒(起飞时间)
	MostDifferenceDeptTime *string `json:"mostDifferenceDeptTime,omitempty" xml:"mostDifferenceDeptTime,omitempty"`
	// 低价提醒(折扣)
	MostDifferenceDiscount *string `json:"mostDifferenceDiscount,omitempty" xml:"mostDifferenceDiscount,omitempty"`
	// 低价提醒(航班号)
	MostDifferenceFlightNo *string `json:"mostDifferenceFlightNo,omitempty" xml:"mostDifferenceFlightNo,omitempty"`
	// 低价提醒(与最低价差额)
	MostDifferencePrice *float64 `json:"mostDifferencePrice,omitempty" xml:"mostDifferencePrice,omitempty"`
	// 不选低价原因
	MostDifferenceReason *string `json:"mostDifferenceReason,omitempty" xml:"mostDifferenceReason,omitempty"`
	// 低价航班价格
	MostPrice *float64 `json:"mostPrice,omitempty" xml:"mostPrice,omitempty"`
	// 协议价优惠金额
	NegotiationCouponFee *float64 `json:"negotiationCouponFee,omitempty" xml:"negotiationCouponFee,omitempty"`
	// 燃油费
	OilFee *float64 `json:"oilFee,omitempty" xml:"oilFee,omitempty"`
	// 订单号
	OrderId *string `json:"orderId,omitempty" xml:"orderId,omitempty"`
	// 超标审批单号
	OverApplyId *string `json:"overApplyId,omitempty" xml:"overApplyId,omitempty"`
	// 主键id
	PrimaryId *int64 `json:"primaryId,omitempty" xml:"primaryId,omitempty"`
	// 项目代码
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 项目名称
	ProjectName *string `json:"projectName,omitempty" xml:"projectName,omitempty"`
	// 退款手续费
	RefundFee *float64 `json:"refundFee,omitempty" xml:"refundFee,omitempty"`
	// 改签退票手续费
	RefundUpgradeCost *float64 `json:"refundUpgradeCost,omitempty" xml:"refundUpgradeCost,omitempty"`
	// 备注
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 是否重复退
	RepeatRefund *string `json:"repeatRefund,omitempty" xml:"repeatRefund,omitempty"`
	// 销售价
	SealPrice *float64 `json:"sealPrice,omitempty" xml:"sealPrice,omitempty"`
	// 服务费,仅在feeType  11001、11002中展示
	ServiceFee *float64 `json:"serviceFee,omitempty" xml:"serviceFee,omitempty"`
	// 结算金额
	SettlementFee *float64 `json:"settlementFee,omitempty" xml:"settlementFee,omitempty"`
	// 预存赠送金额消费
	SettlementGrantFee *float64 `json:"settlementGrantFee,omitempty" xml:"settlementGrantFee,omitempty"`
	// 结算时间
	SettlementTime *string `json:"settlementTime,omitempty" xml:"settlementTime,omitempty"`
	// 结算类型
	SettlementType *string `json:"settlementType,omitempty" xml:"settlementType,omitempty"`
	// 入账状态
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 行程单号
	TicketId *string `json:"ticketId,omitempty" xml:"ticketId,omitempty"`
	// 出行人use id
	TravelerId *string `json:"travelerId,omitempty" xml:"travelerId,omitempty"`
	// 出行人工号
	TravelerJobNo *string `json:"travelerJobNo,omitempty" xml:"travelerJobNo,omitempty"`
	// 出行人名称
	TravelerName *string `json:"travelerName,omitempty" xml:"travelerName,omitempty"`
	// 改签差价
	UpgradeCost *float64 `json:"upgradeCost,omitempty" xml:"upgradeCost,omitempty"`
	// 发票类型
	VoucherType *int64 `json:"voucherType,omitempty" xml:"voucherType,omitempty"`
}

func (BillSettementFlightResponseBodyModuleDataList) GoString

func (*BillSettementFlightResponseBodyModuleDataList) SetAdvanceDay

func (*BillSettementFlightResponseBodyModuleDataList) SetAirlineCorpCode

func (*BillSettementFlightResponseBodyModuleDataList) SetAirlineCorpName

func (*BillSettementFlightResponseBodyModuleDataList) SetAlipayTradeNo

func (*BillSettementFlightResponseBodyModuleDataList) SetApplyId

func (*BillSettementFlightResponseBodyModuleDataList) SetArrAirportCode

func (*BillSettementFlightResponseBodyModuleDataList) SetArrCity

func (*BillSettementFlightResponseBodyModuleDataList) SetArrDate

func (*BillSettementFlightResponseBodyModuleDataList) SetArrStation

func (*BillSettementFlightResponseBodyModuleDataList) SetArrTime

func (*BillSettementFlightResponseBodyModuleDataList) SetBillRecordTime

func (*BillSettementFlightResponseBodyModuleDataList) SetBookTime

func (*BillSettementFlightResponseBodyModuleDataList) SetBookerId

func (*BillSettementFlightResponseBodyModuleDataList) SetBookerJobNo

func (*BillSettementFlightResponseBodyModuleDataList) SetBookerName

func (*BillSettementFlightResponseBodyModuleDataList) SetBtripCouponFee

func (*BillSettementFlightResponseBodyModuleDataList) SetBuildFee

func (*BillSettementFlightResponseBodyModuleDataList) SetCabin

func (*BillSettementFlightResponseBodyModuleDataList) SetCabinClass

func (*BillSettementFlightResponseBodyModuleDataList) SetCapitalDirection

func (*BillSettementFlightResponseBodyModuleDataList) SetCascadeDepartment

func (*BillSettementFlightResponseBodyModuleDataList) SetChangeFee

func (*BillSettementFlightResponseBodyModuleDataList) SetCorpPayOrderFee

func (*BillSettementFlightResponseBodyModuleDataList) SetCostCenter

func (*BillSettementFlightResponseBodyModuleDataList) SetCostCenterNumber

func (*BillSettementFlightResponseBodyModuleDataList) SetCoupon

func (*BillSettementFlightResponseBodyModuleDataList) SetDepAirportCode

func (*BillSettementFlightResponseBodyModuleDataList) SetDepartment

func (*BillSettementFlightResponseBodyModuleDataList) SetDepartmentId

func (*BillSettementFlightResponseBodyModuleDataList) SetDeptCity

func (*BillSettementFlightResponseBodyModuleDataList) SetDeptDate

func (*BillSettementFlightResponseBodyModuleDataList) SetDeptStation

func (*BillSettementFlightResponseBodyModuleDataList) SetDeptTime

func (*BillSettementFlightResponseBodyModuleDataList) SetDiscount

func (*BillSettementFlightResponseBodyModuleDataList) SetFeeType

func (*BillSettementFlightResponseBodyModuleDataList) SetFlightNo

func (*BillSettementFlightResponseBodyModuleDataList) SetIndex

func (*BillSettementFlightResponseBodyModuleDataList) SetInsuranceFee

func (*BillSettementFlightResponseBodyModuleDataList) SetInvoiceTitle

func (*BillSettementFlightResponseBodyModuleDataList) SetItineraryNum

func (*BillSettementFlightResponseBodyModuleDataList) SetItineraryPrice

func (*BillSettementFlightResponseBodyModuleDataList) SetMostDifferenceDeptTime

func (*BillSettementFlightResponseBodyModuleDataList) SetMostDifferenceDiscount

func (*BillSettementFlightResponseBodyModuleDataList) SetMostDifferenceFlightNo

func (*BillSettementFlightResponseBodyModuleDataList) SetMostDifferencePrice

func (*BillSettementFlightResponseBodyModuleDataList) SetMostDifferenceReason

func (*BillSettementFlightResponseBodyModuleDataList) SetMostPrice

func (*BillSettementFlightResponseBodyModuleDataList) SetNegotiationCouponFee

func (*BillSettementFlightResponseBodyModuleDataList) SetOilFee

func (*BillSettementFlightResponseBodyModuleDataList) SetOrderId

func (*BillSettementFlightResponseBodyModuleDataList) SetOverApplyId

func (*BillSettementFlightResponseBodyModuleDataList) SetPrimaryId

func (*BillSettementFlightResponseBodyModuleDataList) SetProjectCode

func (*BillSettementFlightResponseBodyModuleDataList) SetProjectName

func (*BillSettementFlightResponseBodyModuleDataList) SetRefundFee

func (*BillSettementFlightResponseBodyModuleDataList) SetRefundUpgradeCost

func (*BillSettementFlightResponseBodyModuleDataList) SetRemark

func (*BillSettementFlightResponseBodyModuleDataList) SetRepeatRefund

func (*BillSettementFlightResponseBodyModuleDataList) SetSealPrice

func (*BillSettementFlightResponseBodyModuleDataList) SetServiceFee

func (*BillSettementFlightResponseBodyModuleDataList) SetSettlementFee

func (*BillSettementFlightResponseBodyModuleDataList) SetSettlementGrantFee

func (*BillSettementFlightResponseBodyModuleDataList) SetSettlementTime

func (*BillSettementFlightResponseBodyModuleDataList) SetSettlementType

func (*BillSettementFlightResponseBodyModuleDataList) SetStatus

func (*BillSettementFlightResponseBodyModuleDataList) SetTicketId

func (*BillSettementFlightResponseBodyModuleDataList) SetTravelerId

func (*BillSettementFlightResponseBodyModuleDataList) SetTravelerJobNo

func (*BillSettementFlightResponseBodyModuleDataList) SetTravelerName

func (*BillSettementFlightResponseBodyModuleDataList) SetUpgradeCost

func (*BillSettementFlightResponseBodyModuleDataList) SetVoucherType

func (BillSettementFlightResponseBodyModuleDataList) String

type BillSettementHotelHeaders

type BillSettementHotelHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (BillSettementHotelHeaders) GoString

func (s BillSettementHotelHeaders) GoString() string

func (*BillSettementHotelHeaders) SetCommonHeaders

func (*BillSettementHotelHeaders) SetXAcsDingtalkAccessToken

func (s *BillSettementHotelHeaders) SetXAcsDingtalkAccessToken(v string) *BillSettementHotelHeaders

func (BillSettementHotelHeaders) String

func (s BillSettementHotelHeaders) String() string

type BillSettementHotelRequest

type BillSettementHotelRequest struct {
	// 类目:机酒火车 1:机票; 2:酒店; 4:用车 6:商旅火车票
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 第三方企业
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 页数,从1开始
	PageNumber *int64 `json:"pageNumber,omitempty" xml:"pageNumber,omitempty"`
	// 每页数据量,默认100,最高500
	PageSize *int64 `json:"pageSize,omitempty" xml:"pageSize,omitempty"`
	// 记账更新结束日期
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新开始日期
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
}

func (BillSettementHotelRequest) GoString

func (s BillSettementHotelRequest) GoString() string

func (*BillSettementHotelRequest) SetCategory

func (*BillSettementHotelRequest) SetCorpId

func (*BillSettementHotelRequest) SetPageNumber

func (*BillSettementHotelRequest) SetPageSize

func (*BillSettementHotelRequest) SetPeriodEnd

func (*BillSettementHotelRequest) SetPeriodStart

func (BillSettementHotelRequest) String

func (s BillSettementHotelRequest) String() string

type BillSettementHotelResponse

type BillSettementHotelResponse struct {
	Headers map[string]*string              `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *BillSettementHotelResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (BillSettementHotelResponse) GoString

func (s BillSettementHotelResponse) GoString() string

func (*BillSettementHotelResponse) SetBody

func (*BillSettementHotelResponse) SetHeaders

func (BillSettementHotelResponse) String

type BillSettementHotelResponseBody

type BillSettementHotelResponseBody struct {
	// module
	Module *BillSettementHotelResponseBodyModule `json:"module,omitempty" xml:"module,omitempty" type:"Struct"`
	// 结果code
	ResultCode *int64 `json:"resultCode,omitempty" xml:"resultCode,omitempty"`
	// 结果msg
	ResultMsg *string `json:"resultMsg,omitempty" xml:"resultMsg,omitempty"`
	// 是否成功
	Success *bool `json:"success,omitempty" xml:"success,omitempty"`
}

func (BillSettementHotelResponseBody) GoString

func (*BillSettementHotelResponseBody) SetResultCode

func (*BillSettementHotelResponseBody) SetResultMsg

func (*BillSettementHotelResponseBody) SetSuccess

func (BillSettementHotelResponseBody) String

type BillSettementHotelResponseBodyModule

type BillSettementHotelResponseBodyModule struct {
	// 类目
	Category *int64 `json:"category,omitempty" xml:"category,omitempty"`
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 数据集合
	DataList []*BillSettementHotelResponseBodyModuleDataList `json:"dataList,omitempty" xml:"dataList,omitempty" type:"Repeated"`
	// 记账更新结束日期
	PeriodEnd *string `json:"periodEnd,omitempty" xml:"periodEnd,omitempty"`
	// 记账更新开始日期
	PeriodStart *string `json:"periodStart,omitempty" xml:"periodStart,omitempty"`
	// 总数据量
	TotalNum *int64 `json:"totalNum,omitempty" xml:"totalNum,omitempty"`
}

func (BillSettementHotelResponseBodyModule) GoString

func (*BillSettementHotelResponseBodyModule) SetCategory

func (*BillSettementHotelResponseBodyModule) SetCorpId

func (*BillSettementHotelResponseBodyModule) SetPeriodEnd

func (*BillSettementHotelResponseBodyModule) SetPeriodStart

func (*BillSettementHotelResponseBodyModule) SetTotalNum

func (BillSettementHotelResponseBodyModule) String

type BillSettementHotelResponseBodyModuleDataList

type BillSettementHotelResponseBodyModuleDataList struct {
	// 交易流水号
	AlipayTradeNo *string `json:"alipayTradeNo,omitempty" xml:"alipayTradeNo,omitempty"`
	// 审批单号
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 入账时间
	BillRecordTime *string `json:"billRecordTime,omitempty" xml:"billRecordTime,omitempty"`
	// 预定时间
	BookTime *string `json:"bookTime,omitempty" xml:"bookTime,omitempty"`
	// 预定人use id
	BookerId *string `json:"bookerId,omitempty" xml:"bookerId,omitempty"`
	// 预订人工号
	BookerJobNo *string `json:"bookerJobNo,omitempty" xml:"bookerJobNo,omitempty"`
	// 预订人名称
	BookerName *string `json:"bookerName,omitempty" xml:"bookerName,omitempty"`
	// 资金方向
	CapitalDirection *string `json:"capitalDirection,omitempty" xml:"capitalDirection,omitempty"`
	// 级联部门
	CascadeDepartment *string `json:"cascadeDepartment,omitempty" xml:"cascadeDepartment,omitempty"`
	// 入住时间
	CheckInDate *string `json:"checkInDate,omitempty" xml:"checkInDate,omitempty"`
	// 离店时间
	CheckoutDate *string `json:"checkoutDate,omitempty" xml:"checkoutDate,omitempty"`
	// 入住城市
	City *string `json:"city,omitempty" xml:"city,omitempty"`
	// 城市编码
	CityCode *string `json:"cityCode,omitempty" xml:"cityCode,omitempty"`
	// 企业退款金额
	CorpRefundFee *float64 `json:"corpRefundFee,omitempty" xml:"corpRefundFee,omitempty"`
	// 企业支付金额
	CorpTotalFee *float64 `json:"corpTotalFee,omitempty" xml:"corpTotalFee,omitempty"`
	// 成本中心名称
	CostCenter *string `json:"costCenter,omitempty" xml:"costCenter,omitempty"`
	// 成本中心编码
	CostCenterNumber *string `json:"costCenterNumber,omitempty" xml:"costCenterNumber,omitempty"`
	// 末级部门
	Department *string `json:"department,omitempty" xml:"department,omitempty"`
	// 部门id
	DepartmentId *string `json:"departmentId,omitempty" xml:"departmentId,omitempty"`
	// 费用类型
	FeeType *string `json:"feeType,omitempty" xml:"feeType,omitempty"`
	// 杂费
	Fees *float64 `json:"fees,omitempty" xml:"fees,omitempty"`
	// 福豆支付
	FuPointFee *float64 `json:"fuPointFee,omitempty" xml:"fuPointFee,omitempty"`
	// 酒店名称
	HotelName *string `json:"hotelName,omitempty" xml:"hotelName,omitempty"`
	// 序号
	Index *string `json:"index,omitempty" xml:"index,omitempty"`
	// 发票抬头
	InvoiceTitle *string `json:"invoiceTitle,omitempty" xml:"invoiceTitle,omitempty"`
	// 是否协议价
	IsNegotiation *bool `json:"isNegotiation,omitempty" xml:"isNegotiation,omitempty"`
	// 是否合住
	IsShareStr *string `json:"isShareStr,omitempty" xml:"isShareStr,omitempty"`
	// 入住天数
	Nights *int64 `json:"nights,omitempty" xml:"nights,omitempty"`
	// 订单号
	OrderId *string `json:"orderId,omitempty" xml:"orderId,omitempty"`
	// 订单金额
	OrderPrice *float64 `json:"orderPrice,omitempty" xml:"orderPrice,omitempty"`
	// 订单类型
	OrderType *string `json:"orderType,omitempty" xml:"orderType,omitempty"`
	// 超标审批单号
	OverApplyId *string `json:"overApplyId,omitempty" xml:"overApplyId,omitempty"`
	// 个人退款金额
	PersonRefundFee *float64 `json:"personRefundFee,omitempty" xml:"personRefundFee,omitempty"`
	// 个人支付金额
	PersonSettlePrice *float64 `json:"personSettlePrice,omitempty" xml:"personSettlePrice,omitempty"`
	// 主键id
	PrimaryId *int64 `json:"primaryId,omitempty" xml:"primaryId,omitempty"`
	// 项目编码
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 项目名称
	ProjectName *string `json:"projectName,omitempty" xml:"projectName,omitempty"`
	// 优惠券
	PromotionFee *float64 `json:"promotionFee,omitempty" xml:"promotionFee,omitempty"`
	// 备注
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 房间数
	RoomNumber *int64 `json:"roomNumber,omitempty" xml:"roomNumber,omitempty"`
	// 房价
	RoomPrice *float64 `json:"roomPrice,omitempty" xml:"roomPrice,omitempty"`
	// 房间类型
	RoomType *string `json:"roomType,omitempty" xml:"roomType,omitempty"`
	// 服务费,仅在 feeType 20111、20112中展示
	ServiceFee *float64 `json:"serviceFee,omitempty" xml:"serviceFee,omitempty"`
	// 结算金额
	SettlementFee *float64 `json:"settlementFee,omitempty" xml:"settlementFee,omitempty"`
	// 预存赠送金额消费
	SettlementGrantFee *float64 `json:"settlementGrantFee,omitempty" xml:"settlementGrantFee,omitempty"`
	// 结算时间
	SettlementTime *string `json:"settlementTime,omitempty" xml:"settlementTime,omitempty"`
	// 结算类型
	SettlementType *string `json:"settlementType,omitempty" xml:"settlementType,omitempty"`
	// 入账状态
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 总间夜数
	TotalNights *int64 `json:"totalNights,omitempty" xml:"totalNights,omitempty"`
	// 出行人use id
	TravelerId *string `json:"travelerId,omitempty" xml:"travelerId,omitempty"`
	// 出行人工号
	TravelerJobNo *string `json:"travelerJobNo,omitempty" xml:"travelerJobNo,omitempty"`
	// 出行人名称
	TravelerName *string `json:"travelerName,omitempty" xml:"travelerName,omitempty"`
	// 发票类型
	VoucherType *int64 `json:"voucherType,omitempty" xml:"voucherType,omitempty"`
}

func (BillSettementHotelResponseBodyModuleDataList) GoString

func (*BillSettementHotelResponseBodyModuleDataList) SetAlipayTradeNo

func (*BillSettementHotelResponseBodyModuleDataList) SetApplyId

func (*BillSettementHotelResponseBodyModuleDataList) SetBillRecordTime

func (*BillSettementHotelResponseBodyModuleDataList) SetBookTime

func (*BillSettementHotelResponseBodyModuleDataList) SetBookerId

func (*BillSettementHotelResponseBodyModuleDataList) SetBookerJobNo

func (*BillSettementHotelResponseBodyModuleDataList) SetBookerName

func (*BillSettementHotelResponseBodyModuleDataList) SetCapitalDirection

func (*BillSettementHotelResponseBodyModuleDataList) SetCascadeDepartment

func (*BillSettementHotelResponseBodyModuleDataList) SetCheckInDate

func (*BillSettementHotelResponseBodyModuleDataList) SetCheckoutDate

func (*BillSettementHotelResponseBodyModuleDataList) SetCity

func (*BillSettementHotelResponseBodyModuleDataList) SetCityCode

func (*BillSettementHotelResponseBodyModuleDataList) SetCorpRefundFee

func (*BillSettementHotelResponseBodyModuleDataList) SetCorpTotalFee

func (*BillSettementHotelResponseBodyModuleDataList) SetCostCenter

func (*BillSettementHotelResponseBodyModuleDataList) SetCostCenterNumber

func (*BillSettementHotelResponseBodyModuleDataList) SetDepartment

func (*BillSettementHotelResponseBodyModuleDataList) SetDepartmentId

func (*BillSettementHotelResponseBodyModuleDataList) SetFeeType

func (*BillSettementHotelResponseBodyModuleDataList) SetFees

func (*BillSettementHotelResponseBodyModuleDataList) SetFuPointFee

func (*BillSettementHotelResponseBodyModuleDataList) SetHotelName

func (*BillSettementHotelResponseBodyModuleDataList) SetIndex

func (*BillSettementHotelResponseBodyModuleDataList) SetInvoiceTitle

func (*BillSettementHotelResponseBodyModuleDataList) SetIsNegotiation

func (*BillSettementHotelResponseBodyModuleDataList) SetIsShareStr

func (*BillSettementHotelResponseBodyModuleDataList) SetNights

func (*BillSettementHotelResponseBodyModuleDataList) SetOrderId

func (*BillSettementHotelResponseBodyModuleDataList) SetOrderPrice

func (*BillSettementHotelResponseBodyModuleDataList) SetOrderType

func (*BillSettementHotelResponseBodyModuleDataList) SetOverApplyId

func (*BillSettementHotelResponseBodyModuleDataList) SetPersonRefundFee

func (*BillSettementHotelResponseBodyModuleDataList) SetPersonSettlePrice

func (*BillSettementHotelResponseBodyModuleDataList) SetPrimaryId

func (*BillSettementHotelResponseBodyModuleDataList) SetProjectCode

func (*BillSettementHotelResponseBodyModuleDataList) SetProjectName

func (*BillSettementHotelResponseBodyModuleDataList) SetPromotionFee

func (*BillSettementHotelResponseBodyModuleDataList) SetRemark

func (*BillSettementHotelResponseBodyModuleDataList) SetRoomNumber

func (*BillSettementHotelResponseBodyModuleDataList) SetRoomPrice

func (*BillSettementHotelResponseBodyModuleDataList) SetRoomType

func (*BillSettementHotelResponseBodyModuleDataList) SetServiceFee

func (*BillSettementHotelResponseBodyModuleDataList) SetSettlementFee

func (*BillSettementHotelResponseBodyModuleDataList) SetSettlementGrantFee

func (*BillSettementHotelResponseBodyModuleDataList) SetSettlementTime

func (*BillSettementHotelResponseBodyModuleDataList) SetSettlementType

func (*BillSettementHotelResponseBodyModuleDataList) SetStatus

func (*BillSettementHotelResponseBodyModuleDataList) SetTotalNights

func (*BillSettementHotelResponseBodyModuleDataList) SetTravelerId

func (*BillSettementHotelResponseBodyModuleDataList) SetTravelerJobNo

func (*BillSettementHotelResponseBodyModuleDataList) SetTravelerName

func (*BillSettementHotelResponseBodyModuleDataList) SetVoucherType

func (BillSettementHotelResponseBodyModuleDataList) String

type Client

type Client struct {
	openapi.Client
}

func NewClient

func NewClient(config *openapi.Config) (*Client, error)

func (*Client) AddCityCarApply

func (client *Client) AddCityCarApply(request *AddCityCarApplyRequest) (_result *AddCityCarApplyResponse, _err error)

func (*Client) AddCityCarApplyWithOptions

func (client *Client) AddCityCarApplyWithOptions(request *AddCityCarApplyRequest, headers *AddCityCarApplyHeaders, runtime *util.RuntimeOptions) (_result *AddCityCarApplyResponse, _err error)

func (*Client) ApproveCityCarApply

func (client *Client) ApproveCityCarApply(request *ApproveCityCarApplyRequest) (_result *ApproveCityCarApplyResponse, _err error)

func (*Client) ApproveCityCarApplyWithOptions

func (client *Client) ApproveCityCarApplyWithOptions(request *ApproveCityCarApplyRequest, headers *ApproveCityCarApplyHeaders, runtime *util.RuntimeOptions) (_result *ApproveCityCarApplyResponse, _err error)

func (*Client) BillSettementBtripTrain

func (client *Client) BillSettementBtripTrain(request *BillSettementBtripTrainRequest) (_result *BillSettementBtripTrainResponse, _err error)

func (*Client) BillSettementBtripTrainWithOptions

func (client *Client) BillSettementBtripTrainWithOptions(request *BillSettementBtripTrainRequest, headers *BillSettementBtripTrainHeaders, runtime *util.RuntimeOptions) (_result *BillSettementBtripTrainResponse, _err error)

func (*Client) BillSettementCar

func (client *Client) BillSettementCar(request *BillSettementCarRequest) (_result *BillSettementCarResponse, _err error)

func (*Client) BillSettementCarWithOptions

func (client *Client) BillSettementCarWithOptions(request *BillSettementCarRequest, headers *BillSettementCarHeaders, runtime *util.RuntimeOptions) (_result *BillSettementCarResponse, _err error)

func (*Client) BillSettementFlight

func (client *Client) BillSettementFlight(request *BillSettementFlightRequest) (_result *BillSettementFlightResponse, _err error)

func (*Client) BillSettementFlightWithOptions

func (client *Client) BillSettementFlightWithOptions(request *BillSettementFlightRequest, headers *BillSettementFlightHeaders, runtime *util.RuntimeOptions) (_result *BillSettementFlightResponse, _err error)

func (*Client) BillSettementHotel

func (client *Client) BillSettementHotel(request *BillSettementHotelRequest) (_result *BillSettementHotelResponse, _err error)

func (*Client) BillSettementHotelWithOptions

func (client *Client) BillSettementHotelWithOptions(request *BillSettementHotelRequest, headers *BillSettementHotelHeaders, runtime *util.RuntimeOptions) (_result *BillSettementHotelResponse, _err error)

func (*Client) GetFlightExceedApply

func (client *Client) GetFlightExceedApply(request *GetFlightExceedApplyRequest) (_result *GetFlightExceedApplyResponse, _err error)

func (*Client) GetFlightExceedApplyWithOptions

func (client *Client) GetFlightExceedApplyWithOptions(request *GetFlightExceedApplyRequest, headers *GetFlightExceedApplyHeaders, runtime *util.RuntimeOptions) (_result *GetFlightExceedApplyResponse, _err error)

func (*Client) GetHotelExceedApply

func (client *Client) GetHotelExceedApply(request *GetHotelExceedApplyRequest) (_result *GetHotelExceedApplyResponse, _err error)

func (*Client) GetHotelExceedApplyWithOptions

func (client *Client) GetHotelExceedApplyWithOptions(request *GetHotelExceedApplyRequest, headers *GetHotelExceedApplyHeaders, runtime *util.RuntimeOptions) (_result *GetHotelExceedApplyResponse, _err error)

func (*Client) GetTrainExceedApply

func (client *Client) GetTrainExceedApply(request *GetTrainExceedApplyRequest) (_result *GetTrainExceedApplyResponse, _err error)

func (*Client) GetTrainExceedApplyWithOptions

func (client *Client) GetTrainExceedApplyWithOptions(request *GetTrainExceedApplyRequest, headers *GetTrainExceedApplyHeaders, runtime *util.RuntimeOptions) (_result *GetTrainExceedApplyResponse, _err error)

func (*Client) Init

func (client *Client) Init(config *openapi.Config) (_err error)

func (*Client) QueryCityCarApply

func (client *Client) QueryCityCarApply(request *QueryCityCarApplyRequest) (_result *QueryCityCarApplyResponse, _err error)

func (*Client) QueryCityCarApplyWithOptions

func (client *Client) QueryCityCarApplyWithOptions(request *QueryCityCarApplyRequest, headers *QueryCityCarApplyHeaders, runtime *util.RuntimeOptions) (_result *QueryCityCarApplyResponse, _err error)

func (*Client) QueryUnionOrder

func (client *Client) QueryUnionOrder(request *QueryUnionOrderRequest) (_result *QueryUnionOrderResponse, _err error)

func (*Client) QueryUnionOrderWithOptions

func (client *Client) QueryUnionOrderWithOptions(request *QueryUnionOrderRequest, headers *QueryUnionOrderHeaders, runtime *util.RuntimeOptions) (_result *QueryUnionOrderResponse, _err error)

func (*Client) SyncExceedApply

func (client *Client) SyncExceedApply(request *SyncExceedApplyRequest) (_result *SyncExceedApplyResponse, _err error)

func (*Client) SyncExceedApplyWithOptions

func (client *Client) SyncExceedApplyWithOptions(request *SyncExceedApplyRequest, headers *SyncExceedApplyHeaders, runtime *util.RuntimeOptions) (_result *SyncExceedApplyResponse, _err error)

type GetFlightExceedApplyHeaders

type GetFlightExceedApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (GetFlightExceedApplyHeaders) GoString

func (s GetFlightExceedApplyHeaders) GoString() string

func (*GetFlightExceedApplyHeaders) SetCommonHeaders

func (*GetFlightExceedApplyHeaders) SetXAcsDingtalkAccessToken

func (s *GetFlightExceedApplyHeaders) SetXAcsDingtalkAccessToken(v string) *GetFlightExceedApplyHeaders

func (GetFlightExceedApplyHeaders) String

type GetFlightExceedApplyRequest

type GetFlightExceedApplyRequest struct {
	// 商旅超标审批单id
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
}

func (GetFlightExceedApplyRequest) GoString

func (s GetFlightExceedApplyRequest) GoString() string

func (*GetFlightExceedApplyRequest) SetApplyId

func (*GetFlightExceedApplyRequest) SetCorpId

func (GetFlightExceedApplyRequest) String

type GetFlightExceedApplyResponse

type GetFlightExceedApplyResponse struct {
	Headers map[string]*string                `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *GetFlightExceedApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (GetFlightExceedApplyResponse) GoString

func (s GetFlightExceedApplyResponse) GoString() string

func (*GetFlightExceedApplyResponse) SetBody

func (*GetFlightExceedApplyResponse) SetHeaders

func (GetFlightExceedApplyResponse) String

type GetFlightExceedApplyResponseBody

type GetFlightExceedApplyResponseBody struct {
	// 商旅超标审批单id
	ApplyId *int64 `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 意向出行信息
	ApplyIntentionInfoDO *GetFlightExceedApplyResponseBodyApplyIntentionInfoDO `json:"applyIntentionInfoDO,omitempty" xml:"applyIntentionInfoDO,omitempty" type:"Struct"`
	// 出差原因
	BtripCause *string `json:"btripCause,omitempty" xml:"btripCause,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 超标原因
	ExceedReason *string `json:"exceedReason,omitempty" xml:"exceedReason,omitempty"`
	// 超标类型,1:折扣 2,8,10:时间 3,9,11:折扣和时间
	ExceedType *int32 `json:"exceedType,omitempty" xml:"exceedType,omitempty"`
	// 原差旅标准
	OriginStandard *string `json:"originStandard,omitempty" xml:"originStandard,omitempty"`
	// 审批单状态 0:审批中 1:已同意 2:已拒绝
	Status *int32 `json:"status,omitempty" xml:"status,omitempty"`
	// 审批单提交时间
	SubmitTime *string `json:"submitTime,omitempty" xml:"submitTime,omitempty"`
	// 第三方出差审批单号
	ThirdpartApplyId *string `json:"thirdpartApplyId,omitempty" xml:"thirdpartApplyId,omitempty"`
	// 第三方用户id
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (GetFlightExceedApplyResponseBody) GoString

func (*GetFlightExceedApplyResponseBody) SetApplyId

func (*GetFlightExceedApplyResponseBody) SetBtripCause

func (*GetFlightExceedApplyResponseBody) SetCorpId

func (*GetFlightExceedApplyResponseBody) SetExceedReason

func (*GetFlightExceedApplyResponseBody) SetExceedType

func (*GetFlightExceedApplyResponseBody) SetOriginStandard

func (*GetFlightExceedApplyResponseBody) SetStatus

func (*GetFlightExceedApplyResponseBody) SetSubmitTime

func (*GetFlightExceedApplyResponseBody) SetThirdpartApplyId

func (*GetFlightExceedApplyResponseBody) SetUserId

func (GetFlightExceedApplyResponseBody) String

type GetFlightExceedApplyResponseBodyApplyIntentionInfoDO

type GetFlightExceedApplyResponseBodyApplyIntentionInfoDO struct {
	// 到达城市三字码
	ArrCity *string `json:"arrCity,omitempty" xml:"arrCity,omitempty"`
	// 到达城市名称
	ArrCityName *string `json:"arrCityName,omitempty" xml:"arrCityName,omitempty"`
	// 到达时间
	ArrTime *string `json:"arrTime,omitempty" xml:"arrTime,omitempty"`
	// 超标的舱位,F:头等舱 C:商务舱 Y:经济舱 P:超值经济舱
	Cabin *string `json:"cabin,omitempty" xml:"cabin,omitempty"`
	// 申请超标的舱等 0:头等舱 1:商务舱 2:经济舱 3:超值经济舱
	CabinClass *int32 `json:"cabinClass,omitempty" xml:"cabinClass,omitempty"`
	// 舱等描述,头等舱,商务舱,经济舱,超值经济舱
	CabinClassStr *string `json:"cabinClassStr,omitempty" xml:"cabinClassStr,omitempty"`
	// 出发城市三字码
	DepCity *string `json:"depCity,omitempty" xml:"depCity,omitempty"`
	// 出发城市名称
	DepCityName *string `json:"depCityName,omitempty" xml:"depCityName,omitempty"`
	// 出发时间
	DepTime *string `json:"depTime,omitempty" xml:"depTime,omitempty"`
	// 折扣
	Discount *float64 `json:"discount,omitempty" xml:"discount,omitempty"`
	// 航班号
	FlightNo *string `json:"flightNo,omitempty" xml:"flightNo,omitempty"`
	// 意向航班价格(元)
	Price *int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 超标类型,1:折扣 2,8,10:时间 3,9,11:折扣和时间
	Type *int32 `json:"type,omitempty" xml:"type,omitempty"`
}

func (GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) GoString

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetArrCity

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetArrCityName

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetArrTime

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetCabin

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetCabinClass

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetCabinClassStr

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetDepCity

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetDepCityName

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetDepTime

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetDiscount

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetFlightNo

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetPrice

func (*GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) SetType

func (GetFlightExceedApplyResponseBodyApplyIntentionInfoDO) String

type GetHotelExceedApplyHeaders

type GetHotelExceedApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (GetHotelExceedApplyHeaders) GoString

func (s GetHotelExceedApplyHeaders) GoString() string

func (*GetHotelExceedApplyHeaders) SetCommonHeaders

func (*GetHotelExceedApplyHeaders) SetXAcsDingtalkAccessToken

func (s *GetHotelExceedApplyHeaders) SetXAcsDingtalkAccessToken(v string) *GetHotelExceedApplyHeaders

func (GetHotelExceedApplyHeaders) String

type GetHotelExceedApplyRequest

type GetHotelExceedApplyRequest struct {
	// 商旅超标审批单id
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
}

func (GetHotelExceedApplyRequest) GoString

func (s GetHotelExceedApplyRequest) GoString() string

func (*GetHotelExceedApplyRequest) SetApplyId

func (*GetHotelExceedApplyRequest) SetCorpId

func (GetHotelExceedApplyRequest) String

type GetHotelExceedApplyResponse

type GetHotelExceedApplyResponse struct {
	Headers map[string]*string               `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *GetHotelExceedApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (GetHotelExceedApplyResponse) GoString

func (s GetHotelExceedApplyResponse) GoString() string

func (*GetHotelExceedApplyResponse) SetBody

func (*GetHotelExceedApplyResponse) SetHeaders

func (GetHotelExceedApplyResponse) String

type GetHotelExceedApplyResponseBody

type GetHotelExceedApplyResponseBody struct {
	// 商旅超标审批单id
	ApplyId *int64 `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 意向出行信息
	ApplyIntentionInfoDO *GetHotelExceedApplyResponseBodyApplyIntentionInfoDO `json:"applyIntentionInfoDO,omitempty" xml:"applyIntentionInfoDO,omitempty" type:"Struct"`
	// 出差原因
	BtripCause *string `json:"btripCause,omitempty" xml:"btripCause,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 超标原因
	ExceedReason *string `json:"exceedReason,omitempty" xml:"exceedReason,omitempty"`
	// 超标类型,32:金额超标
	ExceedType *int32 `json:"exceedType,omitempty" xml:"exceedType,omitempty"`
	// 原差旅标准
	OriginStandard *string `json:"originStandard,omitempty" xml:"originStandard,omitempty"`
	// 审批单状态 0:审批中 1:已同意 2:已拒绝
	Status *int32 `json:"status,omitempty" xml:"status,omitempty"`
	// 审批单提交时间
	SubmitTime *string `json:"submitTime,omitempty" xml:"submitTime,omitempty"`
	// 第三方出差审批单号
	ThirdpartApplyId *string `json:"thirdpartApplyId,omitempty" xml:"thirdpartApplyId,omitempty"`
	// 第三方用户id
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (GetHotelExceedApplyResponseBody) GoString

func (*GetHotelExceedApplyResponseBody) SetApplyId

func (*GetHotelExceedApplyResponseBody) SetBtripCause

func (*GetHotelExceedApplyResponseBody) SetCorpId

func (*GetHotelExceedApplyResponseBody) SetExceedReason

func (*GetHotelExceedApplyResponseBody) SetExceedType

func (*GetHotelExceedApplyResponseBody) SetOriginStandard

func (*GetHotelExceedApplyResponseBody) SetStatus

func (*GetHotelExceedApplyResponseBody) SetSubmitTime

func (*GetHotelExceedApplyResponseBody) SetThirdpartApplyId

func (*GetHotelExceedApplyResponseBody) SetUserId

func (GetHotelExceedApplyResponseBody) String

type GetHotelExceedApplyResponseBodyApplyIntentionInfoDO

type GetHotelExceedApplyResponseBodyApplyIntentionInfoDO struct {
	// 入住日期
	CheckIn *string `json:"checkIn,omitempty" xml:"checkIn,omitempty"`
	// 离店日期
	CheckOut *string `json:"checkOut,omitempty" xml:"checkOut,omitempty"`
	// 入住城市三字码
	CityCode *string `json:"cityCode,omitempty" xml:"cityCode,omitempty"`
	// 入住城市名称
	CityName *string `json:"cityName,omitempty" xml:"cityName,omitempty"`
	// 意向酒店金额(分)
	Price *int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 是否合住
	Together *bool `json:"together,omitempty" xml:"together,omitempty"`
	// 超标类型,32:金额超标
	Type *int32 `json:"type,omitempty" xml:"type,omitempty"`
}

func (GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) GoString

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetCheckIn

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetCheckOut

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetCityCode

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetCityName

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetPrice

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetTogether

func (*GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) SetType

func (GetHotelExceedApplyResponseBodyApplyIntentionInfoDO) String

type GetTrainExceedApplyHeaders

type GetTrainExceedApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (GetTrainExceedApplyHeaders) GoString

func (s GetTrainExceedApplyHeaders) GoString() string

func (*GetTrainExceedApplyHeaders) SetCommonHeaders

func (*GetTrainExceedApplyHeaders) SetXAcsDingtalkAccessToken

func (s *GetTrainExceedApplyHeaders) SetXAcsDingtalkAccessToken(v string) *GetTrainExceedApplyHeaders

func (GetTrainExceedApplyHeaders) String

type GetTrainExceedApplyRequest

type GetTrainExceedApplyRequest struct {
	// 商旅超标审批单id
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
}

func (GetTrainExceedApplyRequest) GoString

func (s GetTrainExceedApplyRequest) GoString() string

func (*GetTrainExceedApplyRequest) SetApplyId

func (*GetTrainExceedApplyRequest) SetCorpId

func (GetTrainExceedApplyRequest) String

type GetTrainExceedApplyResponse

type GetTrainExceedApplyResponse struct {
	Headers map[string]*string               `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *GetTrainExceedApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (GetTrainExceedApplyResponse) GoString

func (s GetTrainExceedApplyResponse) GoString() string

func (*GetTrainExceedApplyResponse) SetBody

func (*GetTrainExceedApplyResponse) SetHeaders

func (GetTrainExceedApplyResponse) String

type GetTrainExceedApplyResponseBody

type GetTrainExceedApplyResponseBody struct {
	// 商旅超标审批单id
	ApplyId *int64 `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 意向出行信息
	ApplyIntentionInfoDO *GetTrainExceedApplyResponseBodyApplyIntentionInfoDO `json:"applyIntentionInfoDO,omitempty" xml:"applyIntentionInfoDO,omitempty" type:"Struct"`
	// 出差原因
	BtripCause *string `json:"btripCause,omitempty" xml:"btripCause,omitempty"`
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 超标原因
	ExceedReason *string `json:"exceedReason,omitempty" xml:"exceedReason,omitempty"`
	// 超标类型,32:坐席超标
	ExceedType *int32 `json:"exceedType,omitempty" xml:"exceedType,omitempty"`
	// 原差旅标准
	OriginStandard *string `json:"originStandard,omitempty" xml:"originStandard,omitempty"`
	// 审批单状态 0:审批中 1:已同意 2:已拒绝
	Status *int32 `json:"status,omitempty" xml:"status,omitempty"`
	// 审批单提交时间
	SubmitTime *string `json:"submitTime,omitempty" xml:"submitTime,omitempty"`
	// 第三方出差审批单号
	ThirdpartApplyId *string `json:"thirdpartApplyId,omitempty" xml:"thirdpartApplyId,omitempty"`
	// 第三方用户id
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (GetTrainExceedApplyResponseBody) GoString

func (*GetTrainExceedApplyResponseBody) SetApplyId

func (*GetTrainExceedApplyResponseBody) SetBtripCause

func (*GetTrainExceedApplyResponseBody) SetCorpId

func (*GetTrainExceedApplyResponseBody) SetExceedReason

func (*GetTrainExceedApplyResponseBody) SetExceedType

func (*GetTrainExceedApplyResponseBody) SetOriginStandard

func (*GetTrainExceedApplyResponseBody) SetStatus

func (*GetTrainExceedApplyResponseBody) SetSubmitTime

func (*GetTrainExceedApplyResponseBody) SetThirdpartApplyId

func (*GetTrainExceedApplyResponseBody) SetUserId

func (GetTrainExceedApplyResponseBody) String

type GetTrainExceedApplyResponseBodyApplyIntentionInfoDO

type GetTrainExceedApplyResponseBodyApplyIntentionInfoDO struct {
	// 到达城市三字码
	ArrCity *string `json:"arrCity,omitempty" xml:"arrCity,omitempty"`
	// 到达城市名
	ArrCityName *string `json:"arrCityName,omitempty" xml:"arrCityName,omitempty"`
	// 到达站点名称
	ArrStation *string `json:"arrStation,omitempty" xml:"arrStation,omitempty"`
	// 到达时间
	ArrTime *string `json:"arrTime,omitempty" xml:"arrTime,omitempty"`
	// 出发城市三字码
	DepCity *string `json:"depCity,omitempty" xml:"depCity,omitempty"`
	// 出发城市名
	DepCityName *string `json:"depCityName,omitempty" xml:"depCityName,omitempty"`
	// 出发站点名称
	DepStation *string `json:"depStation,omitempty" xml:"depStation,omitempty"`
	// 出发时间
	DepTime *string `json:"depTime,omitempty" xml:"depTime,omitempty"`
	// 意向坐席价格(分)
	Price *int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 意向坐席名称
	SeatName *string `json:"seatName,omitempty" xml:"seatName,omitempty"`
	// 意向车次号
	TrainNo *string `json:"trainNo,omitempty" xml:"trainNo,omitempty"`
	// 意向车次类型
	TrainTypeDesc *string `json:"trainTypeDesc,omitempty" xml:"trainTypeDesc,omitempty"`
}

func (GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) GoString

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetArrCity

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetArrCityName

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetArrStation

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetArrTime

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetDepCity

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetDepCityName

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetDepStation

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetDepTime

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetPrice

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetSeatName

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetTrainNo

func (*GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) SetTrainTypeDesc

func (GetTrainExceedApplyResponseBodyApplyIntentionInfoDO) String

type QueryCityCarApplyHeaders

type QueryCityCarApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (QueryCityCarApplyHeaders) GoString

func (s QueryCityCarApplyHeaders) GoString() string

func (*QueryCityCarApplyHeaders) SetCommonHeaders

func (s *QueryCityCarApplyHeaders) SetCommonHeaders(v map[string]*string) *QueryCityCarApplyHeaders

func (*QueryCityCarApplyHeaders) SetXAcsDingtalkAccessToken

func (s *QueryCityCarApplyHeaders) SetXAcsDingtalkAccessToken(v string) *QueryCityCarApplyHeaders

func (QueryCityCarApplyHeaders) String

func (s QueryCityCarApplyHeaders) String() string

type QueryCityCarApplyRequest

type QueryCityCarApplyRequest struct {
	// 第三方企业ID
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 审批单创建时间小于值
	CreatedEndAt *string `json:"createdEndAt,omitempty" xml:"createdEndAt,omitempty"`
	// 审批单创建时间大于等于值
	CreatedStartAt *string `json:"createdStartAt,omitempty" xml:"createdStartAt,omitempty"`
	// 页码,要求大于等于1,默认1
	PageNumber *int64 `json:"pageNumber,omitempty" xml:"pageNumber,omitempty"`
	// 每页数据量,要求大于等于1,默认20
	PageSize *int64 `json:"pageSize,omitempty" xml:"pageSize,omitempty"`
	// 三方审批单ID
	ThirdPartApplyId *string `json:"thirdPartApplyId,omitempty" xml:"thirdPartApplyId,omitempty"`
	// 第三方员工ID
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (QueryCityCarApplyRequest) GoString

func (s QueryCityCarApplyRequest) GoString() string

func (*QueryCityCarApplyRequest) SetCorpId

func (*QueryCityCarApplyRequest) SetCreatedEndAt

func (*QueryCityCarApplyRequest) SetCreatedStartAt

func (s *QueryCityCarApplyRequest) SetCreatedStartAt(v string) *QueryCityCarApplyRequest

func (*QueryCityCarApplyRequest) SetPageNumber

func (*QueryCityCarApplyRequest) SetPageSize

func (*QueryCityCarApplyRequest) SetThirdPartApplyId

func (s *QueryCityCarApplyRequest) SetThirdPartApplyId(v string) *QueryCityCarApplyRequest

func (*QueryCityCarApplyRequest) SetUserId

func (QueryCityCarApplyRequest) String

func (s QueryCityCarApplyRequest) String() string

type QueryCityCarApplyResponse

type QueryCityCarApplyResponse struct {
	Headers map[string]*string             `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *QueryCityCarApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (QueryCityCarApplyResponse) GoString

func (s QueryCityCarApplyResponse) GoString() string

func (*QueryCityCarApplyResponse) SetBody

func (*QueryCityCarApplyResponse) SetHeaders

func (QueryCityCarApplyResponse) String

func (s QueryCityCarApplyResponse) String() string

type QueryCityCarApplyResponseBody

type QueryCityCarApplyResponseBody struct {
	// 审批单列表
	ApplyList []*QueryCityCarApplyResponseBodyApplyList `json:"applyList,omitempty" xml:"applyList,omitempty" type:"Repeated"`
	// 总数
	Total *int64 `json:"total,omitempty" xml:"total,omitempty"`
}

func (QueryCityCarApplyResponseBody) GoString

func (*QueryCityCarApplyResponseBody) SetApplyList

func (*QueryCityCarApplyResponseBody) SetTotal

func (QueryCityCarApplyResponseBody) String

type QueryCityCarApplyResponseBodyApplyList

type QueryCityCarApplyResponseBodyApplyList struct {
	// 审批单列表
	ApproverList []*QueryCityCarApplyResponseBodyApplyListApproverList `json:"approverList,omitempty" xml:"approverList,omitempty" type:"Repeated"`
	// 员工所在部门ID
	DepartId *string `json:"departId,omitempty" xml:"departId,omitempty"`
	// 员工所在部门名
	DepartName *string `json:"departName,omitempty" xml:"departName,omitempty"`
	// 创建时间
	GmtCreate *string `json:"gmtCreate,omitempty" xml:"gmtCreate,omitempty"`
	// 最近修改时间
	GmtModified *string `json:"gmtModified,omitempty" xml:"gmtModified,omitempty"`
	// 审批单关联的行程
	ItineraryList []*QueryCityCarApplyResponseBodyApplyListItineraryList `json:"itineraryList,omitempty" xml:"itineraryList,omitempty" type:"Repeated"`
	// 审批单状态:0-申请,1-同意,2-拒绝
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 审批单状态:0-申请,1-同意,2-拒绝
	StatusDesc *string `json:"statusDesc,omitempty" xml:"statusDesc,omitempty"`
	// 三方审批单ID
	ThirdPartApplyId *string `json:"thirdPartApplyId,omitempty" xml:"thirdPartApplyId,omitempty"`
	// 申请事由
	TripCause *string `json:"tripCause,omitempty" xml:"tripCause,omitempty"`
	// 审批单标题
	TripTitle *string `json:"tripTitle,omitempty" xml:"tripTitle,omitempty"`
	// 发起审批员工ID
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
	// 发起审批员工名
	UserName *string `json:"userName,omitempty" xml:"userName,omitempty"`
}

func (QueryCityCarApplyResponseBodyApplyList) GoString

func (*QueryCityCarApplyResponseBodyApplyList) SetDepartId

func (*QueryCityCarApplyResponseBodyApplyList) SetDepartName

func (*QueryCityCarApplyResponseBodyApplyList) SetGmtCreate

func (*QueryCityCarApplyResponseBodyApplyList) SetGmtModified

func (*QueryCityCarApplyResponseBodyApplyList) SetStatus

func (*QueryCityCarApplyResponseBodyApplyList) SetStatusDesc

func (*QueryCityCarApplyResponseBodyApplyList) SetThirdPartApplyId

func (*QueryCityCarApplyResponseBodyApplyList) SetTripCause

func (*QueryCityCarApplyResponseBodyApplyList) SetTripTitle

func (*QueryCityCarApplyResponseBodyApplyList) SetUserId

func (*QueryCityCarApplyResponseBodyApplyList) SetUserName

func (QueryCityCarApplyResponseBodyApplyList) String

type QueryCityCarApplyResponseBodyApplyListApproverList

type QueryCityCarApplyResponseBodyApplyListApproverList struct {
	// 审批备注
	Note *string `json:"note,omitempty" xml:"note,omitempty"`
	// 审批时间
	OperateTime *string `json:"operateTime,omitempty" xml:"operateTime,omitempty"`
	// 审批人排序值
	Order *int64 `json:"order,omitempty" xml:"order,omitempty"`
	// 审批状态枚举:审批状态:0-审批中,1-已同意,2-已拒绝
	Status *int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 审批状态描述
	StatusDesc *string `json:"statusDesc,omitempty" xml:"statusDesc,omitempty"`
	// 审批员工ID
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
	// 审批员工名
	UserName *string `json:"userName,omitempty" xml:"userName,omitempty"`
}

func (QueryCityCarApplyResponseBodyApplyListApproverList) GoString

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetNote

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetOperateTime

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetOrder

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetStatus

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetStatusDesc

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetUserId

func (*QueryCityCarApplyResponseBodyApplyListApproverList) SetUserName

func (QueryCityCarApplyResponseBodyApplyListApproverList) String

type QueryCityCarApplyResponseBodyApplyListItineraryList

type QueryCityCarApplyResponseBodyApplyListItineraryList struct {
	// 目的地城市
	ArrCity *string `json:"arrCity,omitempty" xml:"arrCity,omitempty"`
	// 目的地城市三字码
	ArrCityCode *string `json:"arrCityCode,omitempty" xml:"arrCityCode,omitempty"`
	// 到达目的地城市时间
	ArrDate *string `json:"arrDate,omitempty" xml:"arrDate,omitempty"`
	// 商旅内部成本中心ID
	CostCenterId *int64 `json:"costCenterId,omitempty" xml:"costCenterId,omitempty"`
	// 成本中心名称
	CostCenterName *string `json:"costCenterName,omitempty" xml:"costCenterName,omitempty"`
	// 出发城市
	DepCity *string `json:"depCity,omitempty" xml:"depCity,omitempty"`
	// 出发城市三字码
	DepCityCode *string `json:"depCityCode,omitempty" xml:"depCityCode,omitempty"`
	// 出发时间
	DepDate *string `json:"depDate,omitempty" xml:"depDate,omitempty"`
	// 商旅内部发票抬头ID
	InvoiceId *int64 `json:"invoiceId,omitempty" xml:"invoiceId,omitempty"`
	// 发票抬头名称
	InvoiceName *string `json:"invoiceName,omitempty" xml:"invoiceName,omitempty"`
	// 商旅内部行程单ID
	ItineraryId *string `json:"itineraryId,omitempty" xml:"itineraryId,omitempty"`
	// 项目code
	ProjectCode *string `json:"projectCode,omitempty" xml:"projectCode,omitempty"`
	// 项目名称
	ProjectTitle *string `json:"projectTitle,omitempty" xml:"projectTitle,omitempty"`
	// 交通方式:4-市内交通
	TrafficType *int64 `json:"trafficType,omitempty" xml:"trafficType,omitempty"`
}

func (QueryCityCarApplyResponseBodyApplyListItineraryList) GoString

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetArrCity

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetArrCityCode

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetArrDate

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetCostCenterId

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetCostCenterName

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetDepCity

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetDepCityCode

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetDepDate

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetInvoiceId

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetInvoiceName

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetItineraryId

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetProjectCode

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetProjectTitle

func (*QueryCityCarApplyResponseBodyApplyListItineraryList) SetTrafficType

func (QueryCityCarApplyResponseBodyApplyListItineraryList) String

type QueryUnionOrderHeaders

type QueryUnionOrderHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (QueryUnionOrderHeaders) GoString

func (s QueryUnionOrderHeaders) GoString() string

func (*QueryUnionOrderHeaders) SetCommonHeaders

func (s *QueryUnionOrderHeaders) SetCommonHeaders(v map[string]*string) *QueryUnionOrderHeaders

func (*QueryUnionOrderHeaders) SetXAcsDingtalkAccessToken

func (s *QueryUnionOrderHeaders) SetXAcsDingtalkAccessToken(v string) *QueryUnionOrderHeaders

func (QueryUnionOrderHeaders) String

func (s QueryUnionOrderHeaders) String() string

type QueryUnionOrderRequest

type QueryUnionOrderRequest struct {
	// 第三方企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 第三方申请单id
	ThirdPartApplyId *string `json:"thirdPartApplyId,omitempty" xml:"thirdPartApplyId,omitempty"`
	// 关联单号
	UnionNo *string `json:"unionNo,omitempty" xml:"unionNo,omitempty"`
}

func (QueryUnionOrderRequest) GoString

func (s QueryUnionOrderRequest) GoString() string

func (*QueryUnionOrderRequest) SetCorpId

func (*QueryUnionOrderRequest) SetThirdPartApplyId

func (s *QueryUnionOrderRequest) SetThirdPartApplyId(v string) *QueryUnionOrderRequest

func (*QueryUnionOrderRequest) SetUnionNo

func (QueryUnionOrderRequest) String

func (s QueryUnionOrderRequest) String() string

type QueryUnionOrderResponse

type QueryUnionOrderResponse struct {
	Headers map[string]*string           `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *QueryUnionOrderResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (QueryUnionOrderResponse) GoString

func (s QueryUnionOrderResponse) GoString() string

func (*QueryUnionOrderResponse) SetBody

func (*QueryUnionOrderResponse) SetHeaders

func (QueryUnionOrderResponse) String

func (s QueryUnionOrderResponse) String() string

type QueryUnionOrderResponseBody

type QueryUnionOrderResponseBody struct {
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 飞机订单信息
	FlightList []*QueryUnionOrderResponseBodyFlightList `json:"flightList,omitempty" xml:"flightList,omitempty" type:"Repeated"`
	// 酒店订单信息
	HotelList []*QueryUnionOrderResponseBodyHotelList `json:"hotelList,omitempty" xml:"hotelList,omitempty" type:"Repeated"`
	// 火车订单信息
	TrainList []*QueryUnionOrderResponseBodyTrainList `json:"trainList,omitempty" xml:"trainList,omitempty" type:"Repeated"`
	// 用车订单信息
	VehicleList []*QueryUnionOrderResponseBodyVehicleList `json:"vehicleList,omitempty" xml:"vehicleList,omitempty" type:"Repeated"`
}

func (QueryUnionOrderResponseBody) GoString

func (s QueryUnionOrderResponseBody) GoString() string

func (*QueryUnionOrderResponseBody) SetCorpId

func (*QueryUnionOrderResponseBody) SetFlightList

func (*QueryUnionOrderResponseBody) SetHotelList

func (*QueryUnionOrderResponseBody) SetTrainList

func (*QueryUnionOrderResponseBody) SetVehicleList

func (QueryUnionOrderResponseBody) String

type QueryUnionOrderResponseBodyFlightList

type QueryUnionOrderResponseBodyFlightList struct {
	// 订单id
	FlightOrderId *int64 `json:"flightOrderId,omitempty" xml:"flightOrderId,omitempty"`
	// 订单状态:0待支付,1出票中,2已关闭,3有改签单,4有退票单,5出票成功,6退票申请中,7改签申请中
	FlightOrderStatus *int64 `json:"flightOrderStatus,omitempty" xml:"flightOrderStatus,omitempty"`
}

func (QueryUnionOrderResponseBodyFlightList) GoString

func (*QueryUnionOrderResponseBodyFlightList) SetFlightOrderId

func (*QueryUnionOrderResponseBodyFlightList) SetFlightOrderStatus

func (QueryUnionOrderResponseBodyFlightList) String

type QueryUnionOrderResponseBodyHotelList

type QueryUnionOrderResponseBodyHotelList struct {
	// 酒店订单号
	HotelOrderId *int64 `json:"hotelOrderId,omitempty" xml:"hotelOrderId,omitempty"`
	// 订单状态1:等待确认,2:等待付款,3:预订成功,4:申请退款,5:退款成功,6:已关闭,7:结账成功,8:支付成功
	HotelOrderStatus *int64 `json:"hotelOrderStatus,omitempty" xml:"hotelOrderStatus,omitempty"`
}

func (QueryUnionOrderResponseBodyHotelList) GoString

func (*QueryUnionOrderResponseBodyHotelList) SetHotelOrderId

func (*QueryUnionOrderResponseBodyHotelList) SetHotelOrderStatus

func (QueryUnionOrderResponseBodyHotelList) String

type QueryUnionOrderResponseBodyTrainList

type QueryUnionOrderResponseBodyTrainList struct {
	// 火车订单号
	TrainOrderId *int64 `json:"trainOrderId,omitempty" xml:"trainOrderId,omitempty"`
	// 订单状态:0待支付,1出票中,2已关闭,3,改签成功,4退票成功,5出票完成,6退票申请中,7改签申请中,8已出票,已发货,9出票失败,10改签失败,11退票失败
	TrainOrderstatus *int64 `json:"trainOrderstatus,omitempty" xml:"trainOrderstatus,omitempty"`
}

func (QueryUnionOrderResponseBodyTrainList) GoString

func (*QueryUnionOrderResponseBodyTrainList) SetTrainOrderId

func (*QueryUnionOrderResponseBodyTrainList) SetTrainOrderstatus

func (QueryUnionOrderResponseBodyTrainList) String

type QueryUnionOrderResponseBodyVehicleList

type QueryUnionOrderResponseBodyVehicleList struct {
	// 用车订单号
	VehicleOrderId *int64 `json:"vehicleOrderId,omitempty" xml:"vehicleOrderId,omitempty"`
	// 订单状态:0:初始状态,1:已超时,2:派单成功,3:派单失败,4:已退款,5:已支付,6:已取消
	VehicleOrderStatus *int64 `json:"vehicleOrderStatus,omitempty" xml:"vehicleOrderStatus,omitempty"`
}

func (QueryUnionOrderResponseBodyVehicleList) GoString

func (*QueryUnionOrderResponseBodyVehicleList) SetVehicleOrderId

func (*QueryUnionOrderResponseBodyVehicleList) SetVehicleOrderStatus

func (QueryUnionOrderResponseBodyVehicleList) String

type SyncExceedApplyHeaders

type SyncExceedApplyHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (SyncExceedApplyHeaders) GoString

func (s SyncExceedApplyHeaders) GoString() string

func (*SyncExceedApplyHeaders) SetCommonHeaders

func (s *SyncExceedApplyHeaders) SetCommonHeaders(v map[string]*string) *SyncExceedApplyHeaders

func (*SyncExceedApplyHeaders) SetXAcsDingtalkAccessToken

func (s *SyncExceedApplyHeaders) SetXAcsDingtalkAccessToken(v string) *SyncExceedApplyHeaders

func (SyncExceedApplyHeaders) String

func (s SyncExceedApplyHeaders) String() string

type SyncExceedApplyRequest

type SyncExceedApplyRequest struct {
	// 商旅超标审批单id
	ApplyId *string `json:"applyId,omitempty" xml:"applyId,omitempty"`
	// 企业id
	CorpId *string `json:"corpId,omitempty" xml:"corpId,omitempty"`
	// 审批意见
	Remark *string `json:"remark,omitempty" xml:"remark,omitempty"`
	// 审批单状态 1同意2拒绝
	Status *int32 `json:"status,omitempty" xml:"status,omitempty"`
	// 第三方流程实例id
	ThirdpartyFlowId *string `json:"thirdpartyFlowId,omitempty" xml:"thirdpartyFlowId,omitempty"`
	// 用户id
	UserId *string `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (SyncExceedApplyRequest) GoString

func (s SyncExceedApplyRequest) GoString() string

func (*SyncExceedApplyRequest) SetApplyId

func (*SyncExceedApplyRequest) SetCorpId

func (*SyncExceedApplyRequest) SetRemark

func (*SyncExceedApplyRequest) SetStatus

func (*SyncExceedApplyRequest) SetThirdpartyFlowId

func (s *SyncExceedApplyRequest) SetThirdpartyFlowId(v string) *SyncExceedApplyRequest

func (*SyncExceedApplyRequest) SetUserId

func (SyncExceedApplyRequest) String

func (s SyncExceedApplyRequest) String() string

type SyncExceedApplyResponse

type SyncExceedApplyResponse struct {
	Headers map[string]*string           `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	Body    *SyncExceedApplyResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (SyncExceedApplyResponse) GoString

func (s SyncExceedApplyResponse) GoString() string

func (*SyncExceedApplyResponse) SetBody

func (*SyncExceedApplyResponse) SetHeaders

func (SyncExceedApplyResponse) String

func (s SyncExceedApplyResponse) String() string

type SyncExceedApplyResponseBody

type SyncExceedApplyResponseBody struct {
	// 是否同步成功
	Module *bool `json:"module,omitempty" xml:"module,omitempty"`
}

func (SyncExceedApplyResponseBody) GoString

func (s SyncExceedApplyResponseBody) GoString() string

func (*SyncExceedApplyResponseBody) SetModule

func (SyncExceedApplyResponseBody) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL