UpdateBillOrderActDto.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.fuzamei.dto;
  2. /**
  3. * @file_name: UpdateBillOrderActDto
  4. * @Description:
  5. * @author: 刘林杰
  6. * @date: 五月 2018/5/11 17:26
  7. * @version:
  8. */
  9. public class UpdateBillOrderActDto {
  10. private String billId;
  11. private int id;
  12. private int status;
  13. private double money;
  14. private int operatorEnterpriseId;
  15. private String operatorEnterprise;
  16. private int ownEnterpriseId;
  17. private String ownEnterprise;
  18. public int getOperatorEnterpriseId() {
  19. return operatorEnterpriseId;
  20. }
  21. public void setOperatorEnterpriseId(int operatorEnterpriseId) {
  22. this.operatorEnterpriseId = operatorEnterpriseId;
  23. }
  24. public String getOperatorEnterprise() {
  25. return operatorEnterprise;
  26. }
  27. public void setOperatorEnterprise(String operatorEnterprise) {
  28. this.operatorEnterprise = operatorEnterprise;
  29. }
  30. public int getOwnEnterpriseId() {
  31. return ownEnterpriseId;
  32. }
  33. public void setOwnEnterpriseId(int ownEnterpriseId) {
  34. this.ownEnterpriseId = ownEnterpriseId;
  35. }
  36. public String getOwnEnterprise() {
  37. return ownEnterprise;
  38. }
  39. public void setOwnEnterprise(String ownEnterprise) {
  40. this.ownEnterprise = ownEnterprise;
  41. }
  42. public int getId() {
  43. return id;
  44. }
  45. public void setId(int id) {
  46. this.id = id;
  47. }
  48. public int getStatus() {
  49. return status;
  50. }
  51. public void setStatus(int status) {
  52. this.status = status;
  53. }
  54. public double getMoney() {
  55. return money;
  56. }
  57. public void setMoney(double money) {
  58. this.money = money;
  59. }
  60. public String getBillId() {
  61. return billId;
  62. }
  63. public void setBillId(String billId) {
  64. this.billId = billId;
  65. }
  66. @Override
  67. public String toString() {
  68. return "UpdateBillOrderActDto{" +
  69. "billId='" + billId + '\'' +
  70. ", id=" + id +
  71. ", status=" + status +
  72. ", money=" + money +
  73. ", operatorEnterpriseId=" + operatorEnterpriseId +
  74. ", operatorEnterprise='" + operatorEnterprise + '\'' +
  75. ", ownEnterpriseId=" + ownEnterpriseId +
  76. ", ownEnterprise='" + ownEnterprise + '\'' +
  77. '}';
  78. }
  79. }