OperatorActive.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package com.goafanti.order.bo;
  2. /**
  3. * 设置用户和管理员可操作选项
  4. *
  5. */
  6. public class OperatorActive {
  7. /** 确认意向订单 **/
  8. private boolean confirmIntention;
  9. /** 拒绝意向订单 **/
  10. private boolean refuseIntention;
  11. /** 支付首付 **/
  12. private boolean payForFirst;
  13. /** 确认支付首付 **/
  14. private boolean confirmPayForFirst;
  15. /** 支付尾款 **/
  16. private boolean payForLast;
  17. /** 确认支付尾款 **/
  18. private boolean confirmPayForLast;
  19. /** 申请取消 **/
  20. private boolean applyForCancel;
  21. /** 确认退款 **/
  22. private boolean confirmRefund;
  23. /** 申请提现 **/
  24. private boolean applyForWithdraw;
  25. /** 确认提现 **/
  26. private boolean confirmWithdraw;
  27. public boolean isConfirmIntention() {
  28. return confirmIntention;
  29. }
  30. public void setConfirmIntention(boolean confirmIntention) {
  31. this.confirmIntention = confirmIntention;
  32. }
  33. public boolean isRefuseIntention() {
  34. return refuseIntention;
  35. }
  36. public void setRefuseIntention(boolean refuseIntention) {
  37. this.refuseIntention = refuseIntention;
  38. }
  39. public boolean isPayForFirst() {
  40. return payForFirst;
  41. }
  42. public void setPayForFirst(boolean payForFirst) {
  43. this.payForFirst = payForFirst;
  44. }
  45. public boolean isConfirmPayForFirst() {
  46. return confirmPayForFirst;
  47. }
  48. public void setConfirmPayForFirst(boolean confirmPayForFirst) {
  49. this.confirmPayForFirst = confirmPayForFirst;
  50. }
  51. public boolean isPayForLast() {
  52. return payForLast;
  53. }
  54. public void setPayForLast(boolean payForLast) {
  55. this.payForLast = payForLast;
  56. }
  57. public boolean isConfirmPayForLast() {
  58. return confirmPayForLast;
  59. }
  60. public void setConfirmPayForLast(boolean confirmPayForLast) {
  61. this.confirmPayForLast = confirmPayForLast;
  62. }
  63. public boolean isApplyForCancel() {
  64. return applyForCancel;
  65. }
  66. public void setApplyForCancel(boolean applyForCancel) {
  67. this.applyForCancel = applyForCancel;
  68. }
  69. public boolean isConfirmRefund() {
  70. return confirmRefund;
  71. }
  72. public void setConfirmRefund(boolean confirmRefund) {
  73. this.confirmRefund = confirmRefund;
  74. }
  75. public boolean isApplyForWithdraw() {
  76. return applyForWithdraw;
  77. }
  78. public void setApplyForWithdraw(boolean applyForWithdraw) {
  79. this.applyForWithdraw = applyForWithdraw;
  80. }
  81. public boolean isConfirmWithdraw() {
  82. return confirmWithdraw;
  83. }
  84. public void setConfirmWithdraw(boolean confirmWithdraw) {
  85. this.confirmWithdraw = confirmWithdraw;
  86. }
  87. }