SettleAccountsItem.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package com.izouma.nineth.dto.adapay;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. public class SettleAccountsItem{
  4. @JSONField(name="member_id")
  5. private String memberId;
  6. @JSONField(name="upd_ts")
  7. private long updTs;
  8. @JSONField(name="account_info")
  9. private AccountInfo accountInfo;
  10. @JSONField(name="channel")
  11. private String channel;
  12. @JSONField(name="id")
  13. private String id;
  14. @JSONField(name="type")
  15. private String type;
  16. @JSONField(name="app_id")
  17. private String appId;
  18. @JSONField(name="cre_ts")
  19. private long creTs;
  20. public void setMemberId(String memberId){
  21. this.memberId = memberId;
  22. }
  23. public String getMemberId(){
  24. return memberId;
  25. }
  26. public void setUpdTs(long updTs){
  27. this.updTs = updTs;
  28. }
  29. public long getUpdTs(){
  30. return updTs;
  31. }
  32. public void setAccountInfo(AccountInfo accountInfo){
  33. this.accountInfo = accountInfo;
  34. }
  35. public AccountInfo getAccountInfo(){
  36. return accountInfo;
  37. }
  38. public void setChannel(String channel){
  39. this.channel = channel;
  40. }
  41. public String getChannel(){
  42. return channel;
  43. }
  44. public void setId(String id){
  45. this.id = id;
  46. }
  47. public String getId(){
  48. return id;
  49. }
  50. public void setType(String type){
  51. this.type = type;
  52. }
  53. public String getType(){
  54. return type;
  55. }
  56. public void setAppId(String appId){
  57. this.appId = appId;
  58. }
  59. public String getAppId(){
  60. return appId;
  61. }
  62. public void setCreTs(long creTs){
  63. this.creTs = creTs;
  64. }
  65. public long getCreTs(){
  66. return creTs;
  67. }
  68. }