| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Copyright 2018 JDCLOUD.COM
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- // NOTE: This class is auto generated by the jdcloud code generator program.
- package models
- type OffLineRemittanceBillInfo struct {
- /* 当前id (Optional) */
- Id string `json:"id"`
- /* 用户pin (Optional) */
- Pin string `json:"pin"`
- /* 汇款人账号名称 (Optional) */
- RemittorAccount string `json:"remittorAccount"`
- /* 汇款人银行账号 (Optional) */
- RemittorBankAccount string `json:"remittorBankAccount"`
- /* 汇款金额 (Optional) */
- RemitAmount string `json:"remitAmount"`
- /* 汇款银行名称 (Optional) */
- RemitBankName string `json:"remitBankName"`
- /* 汇款时间 (Optional) */
- RemitTime string `json:"remitTime"`
- /* 联系人手机 (Optional) */
- ContactsPhone string `json:"contactsPhone"`
- /* 状态 (Optional) */
- Status string `json:"status"`
- /* 汇款底单扫描件 (Optional) */
- RemitPicture string `json:"remitPicture"`
- /* 创建时间 (Optional) */
- CreateTime string `json:"createTime"`
- /* 更新时间 (Optional) */
- UpdateTime string `json:"updateTime"`
- /* 备查id (Optional) */
- ClaId string `json:"claId"`
- /* 充值单号 (Optional) */
- ErpOrderId string `json:"erpOrderId"`
- /* 提交起始时间 (Optional) */
- CreateBeginTime string `json:"createBeginTime"`
- /* 提交截止时间 (Optional) */
- CreateEndTime string `json:"createEndTime"`
- }
|