85cf17db19d6335f1765509608286520614f4747.svn-base 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.chinacreator.process.bean;
  2. public class TencentBillLResult
  3. {
  4. private boolean result;
  5. private String code;
  6. private String info;
  7. private int counts;
  8. private int files;
  9. private String filenames;
  10. private String filepath;
  11. public boolean isResult() {
  12. return this.result;
  13. }
  14. public void setResult(final boolean result) {
  15. this.result = result;
  16. }
  17. public String getCode() {
  18. return this.code;
  19. }
  20. public void setCode(final String code) {
  21. this.code = code;
  22. }
  23. public String getInfo() {
  24. return this.info;
  25. }
  26. public void setInfo(final String info) {
  27. this.info = info;
  28. }
  29. public int getCounts() {
  30. return this.counts;
  31. }
  32. public void setCounts(final int counts) {
  33. this.counts = counts;
  34. }
  35. public int getFiles() {
  36. return this.files;
  37. }
  38. public void setFiles(final int files) {
  39. this.files = files;
  40. }
  41. public String getFilenames() {
  42. return this.filenames;
  43. }
  44. public void setFilenames(final String filenames) {
  45. this.filenames = filenames;
  46. }
  47. public String getFilepath() {
  48. return this.filepath;
  49. }
  50. public void setFilepath(final String filepath) {
  51. this.filepath = filepath;
  52. }
  53. }