971dcc7c4e28cb2e3403a6abd14b772288c83692.svn-base 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package com.chinacreator.process.bean;
  2. import java.util.*;
  3. public class TencentBillLog
  4. {
  5. private String id;
  6. private String billdate;
  7. private String billtype;
  8. private String cpid;
  9. private String spid;
  10. private int datacounts;
  11. private int filecounts;
  12. private String files;
  13. private String filepath;
  14. private String status;
  15. private String resultcode;
  16. private String errorinfo;
  17. private Date inserttime;
  18. private String history;
  19. private String retry;
  20. public String getBilldate() {
  21. return this.billdate;
  22. }
  23. public void setBilldate(final String billdate) {
  24. this.billdate = billdate;
  25. }
  26. public String getBilltype() {
  27. return this.billtype;
  28. }
  29. public void setBilltype(final String billtype) {
  30. this.billtype = billtype;
  31. }
  32. public String getCpid() {
  33. return this.cpid;
  34. }
  35. public void setCpid(final String cpid) {
  36. this.cpid = cpid;
  37. }
  38. public String getSpid() {
  39. return this.spid;
  40. }
  41. public void setSpid(final String spid) {
  42. this.spid = spid;
  43. }
  44. public int getDatacounts() {
  45. return this.datacounts;
  46. }
  47. public void setDatacounts(final int datacounts) {
  48. this.datacounts = datacounts;
  49. }
  50. public int getFilecounts() {
  51. return this.filecounts;
  52. }
  53. public void setFilecounts(final int filecounts) {
  54. this.filecounts = filecounts;
  55. }
  56. public String getFiles() {
  57. return this.files;
  58. }
  59. public void setFiles(final String files) {
  60. this.files = files;
  61. }
  62. public String getFilepath() {
  63. return this.filepath;
  64. }
  65. public void setFilepath(final String filepath) {
  66. this.filepath = filepath;
  67. }
  68. public String getStatus() {
  69. return this.status;
  70. }
  71. public void setStatus(final String status) {
  72. this.status = status;
  73. }
  74. public String getResultcode() {
  75. return this.resultcode;
  76. }
  77. public void setResultcode(final String resultcode) {
  78. this.resultcode = resultcode;
  79. }
  80. public String getErrorinfo() {
  81. return this.errorinfo;
  82. }
  83. public void setErrorinfo(final String errorinfo) {
  84. this.errorinfo = errorinfo;
  85. }
  86. public Date getInserttime() {
  87. return this.inserttime;
  88. }
  89. public void setInserttime(final Date inserttime) {
  90. this.inserttime = inserttime;
  91. }
  92. public String getId() {
  93. return this.id;
  94. }
  95. public void setId(final String id) {
  96. this.id = id;
  97. }
  98. public String getHistory() {
  99. return this.history;
  100. }
  101. public void setHistory(final String history) {
  102. this.history = history;
  103. }
  104. public String getRetry() {
  105. return this.retry;
  106. }
  107. public void setRetry(final String retry) {
  108. this.retry = retry;
  109. }
  110. }