AssetImportLogPo.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.java110.po.log;
  2. import java.io.Serializable;
  3. public class AssetImportLogPo implements Serializable {
  4. private String logType;
  5. private String successCount;
  6. private String logId;
  7. private String remark;
  8. private String statusCd = "0";
  9. private String communityId;
  10. private String errorCount;
  11. private String state;
  12. public String getLogType() {
  13. return logType;
  14. }
  15. public void setLogType(String logType) {
  16. this.logType = logType;
  17. }
  18. public String getSuccessCount() {
  19. return successCount;
  20. }
  21. public void setSuccessCount(String successCount) {
  22. this.successCount = successCount;
  23. }
  24. public String getLogId() {
  25. return logId;
  26. }
  27. public void setLogId(String logId) {
  28. this.logId = logId;
  29. }
  30. public String getRemark() {
  31. return remark;
  32. }
  33. public void setRemark(String remark) {
  34. this.remark = remark;
  35. }
  36. public String getStatusCd() {
  37. return statusCd;
  38. }
  39. public void setStatusCd(String statusCd) {
  40. this.statusCd = statusCd;
  41. }
  42. public String getCommunityId() {
  43. return communityId;
  44. }
  45. public void setCommunityId(String communityId) {
  46. this.communityId = communityId;
  47. }
  48. public String getErrorCount() {
  49. return errorCount;
  50. }
  51. public void setErrorCount(String errorCount) {
  52. this.errorCount = errorCount;
  53. }
  54. public String getState() {
  55. return state;
  56. }
  57. public void setState(String state) {
  58. this.state = state;
  59. }
  60. }