Condition.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.fuzamei.dto;
  2. /**
  3. * @file_name: Condition
  4. * @Description:
  5. * @author: 刘林杰
  6. * @date: 五月 2018/5/15 13:53
  7. * @version:
  8. */
  9. public class Condition {
  10. private int status;
  11. private String ownEnterprise;
  12. private String orderId;
  13. private int billId;
  14. public int getStatus() {
  15. return status;
  16. }
  17. public void setStatus(int status) {
  18. this.status = status;
  19. }
  20. public String getOwnEnterprise() {
  21. return ownEnterprise;
  22. }
  23. public void setOwnEnterprise(String ownEnterprise) {
  24. this.ownEnterprise = ownEnterprise;
  25. }
  26. public int getBillId() {
  27. return billId;
  28. }
  29. public void setBillId(int billId) {
  30. this.billId = billId;
  31. }
  32. public String getOrderId() {
  33. return orderId;
  34. }
  35. public void setOrderId(String orderId) {
  36. this.orderId = orderId;
  37. }
  38. @Override
  39. public String toString() {
  40. return "Condition [status=" + status + ", ownEnterprise=" + ownEnterprise + ", orderId=" + orderId + ", billId="
  41. + billId + "]";
  42. }
  43. }