| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.goafanti.order.bo;
- /**
- * 设置用户和管理员可操作选项
- *
- */
- public class OperatorActive {
- /** 确认意向订单 **/
- private boolean confirmIntention;
- /** 拒绝意向订单 **/
- private boolean refuseIntention;
- /** 支付首付 **/
- private boolean payForFirst;
- /** 确认支付首付 **/
- private boolean confirmPayForFirst;
- /** 支付尾款 **/
- private boolean payForLast;
- /** 确认支付尾款 **/
- private boolean confirmPayForLast;
- /** 申请取消 **/
- private boolean applyForCancel;
- /** 确认退款 **/
- private boolean confirmRefund;
- /** 申请提现 **/
- private boolean applyForWithdraw;
- /** 确认提现 **/
- private boolean confirmWithdraw;
-
- public boolean isConfirmIntention() {
- return confirmIntention;
- }
- public void setConfirmIntention(boolean confirmIntention) {
- this.confirmIntention = confirmIntention;
- }
- public boolean isRefuseIntention() {
- return refuseIntention;
- }
- public void setRefuseIntention(boolean refuseIntention) {
- this.refuseIntention = refuseIntention;
- }
- public boolean isPayForFirst() {
- return payForFirst;
- }
- public void setPayForFirst(boolean payForFirst) {
- this.payForFirst = payForFirst;
- }
- public boolean isConfirmPayForFirst() {
- return confirmPayForFirst;
- }
- public void setConfirmPayForFirst(boolean confirmPayForFirst) {
- this.confirmPayForFirst = confirmPayForFirst;
- }
- public boolean isPayForLast() {
- return payForLast;
- }
- public void setPayForLast(boolean payForLast) {
- this.payForLast = payForLast;
- }
- public boolean isConfirmPayForLast() {
- return confirmPayForLast;
- }
- public void setConfirmPayForLast(boolean confirmPayForLast) {
- this.confirmPayForLast = confirmPayForLast;
- }
- public boolean isApplyForCancel() {
- return applyForCancel;
- }
- public void setApplyForCancel(boolean applyForCancel) {
- this.applyForCancel = applyForCancel;
- }
- public boolean isConfirmRefund() {
- return confirmRefund;
- }
- public void setConfirmRefund(boolean confirmRefund) {
- this.confirmRefund = confirmRefund;
- }
- public boolean isApplyForWithdraw() {
- return applyForWithdraw;
- }
- public void setApplyForWithdraw(boolean applyForWithdraw) {
- this.applyForWithdraw = applyForWithdraw;
- }
- public boolean isConfirmWithdraw() {
- return confirmWithdraw;
- }
- public void setConfirmWithdraw(boolean confirmWithdraw) {
- this.confirmWithdraw = confirmWithdraw;
- }
- }
|