OffLineRemittanceBillInfo.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // Copyright 2018 JDCLOUD.COM
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // NOTE: This class is auto generated by the jdcloud code generator program.
  16. package models
  17. type OffLineRemittanceBillInfo struct {
  18. /* 当前id (Optional) */
  19. Id string `json:"id"`
  20. /* 用户pin (Optional) */
  21. Pin string `json:"pin"`
  22. /* 汇款人账号名称 (Optional) */
  23. RemittorAccount string `json:"remittorAccount"`
  24. /* 汇款人银行账号 (Optional) */
  25. RemittorBankAccount string `json:"remittorBankAccount"`
  26. /* 汇款金额 (Optional) */
  27. RemitAmount string `json:"remitAmount"`
  28. /* 汇款银行名称 (Optional) */
  29. RemitBankName string `json:"remitBankName"`
  30. /* 汇款时间 (Optional) */
  31. RemitTime string `json:"remitTime"`
  32. /* 联系人手机 (Optional) */
  33. ContactsPhone string `json:"contactsPhone"`
  34. /* 状态 (Optional) */
  35. Status string `json:"status"`
  36. /* 汇款底单扫描件 (Optional) */
  37. RemitPicture string `json:"remitPicture"`
  38. /* 创建时间 (Optional) */
  39. CreateTime string `json:"createTime"`
  40. /* 更新时间 (Optional) */
  41. UpdateTime string `json:"updateTime"`
  42. /* 备查id (Optional) */
  43. ClaId string `json:"claId"`
  44. /* 充值单号 (Optional) */
  45. ErpOrderId string `json:"erpOrderId"`
  46. /* 提交起始时间 (Optional) */
  47. CreateBeginTime string `json:"createBeginTime"`
  48. /* 提交截止时间 (Optional) */
  49. CreateEndTime string `json:"createEndTime"`
  50. }