package com.matrix.system.shopXcx.bean; 
 | 
  
 | 
import com.matrix.core.pojo.EntityDTO; 
 | 
import com.matrix.core.anotations.Extend; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * @author wzy 
 | 
 * @description 提现申请表 
 | 
 * @date 2020-02-16 20:55 
 | 
 */ 
 | 
public class WxWithdrawApply extends EntityDTO { 
 | 
    @Extend 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 提现申请状态 申请中 
 | 
     */ 
 | 
    public static final int ORDER_APPLY_STATUS_DOING = 1; 
 | 
  
 | 
    /** 
 | 
     * 提现申请状态 同意 
 | 
     */ 
 | 
    public static final int ORDER_APPLY_STATUS_AGREE = 2; 
 | 
  
 | 
    /** 
 | 
     * 提现申请状态 不同意 
 | 
     */ 
 | 
    public static final int ORDER_APPLY_STATUS_DISAGREE = 3; 
 | 
  
 | 
    /** 
 | 
     * 是否已打款 是 
 | 
     */ 
 | 
    public static final int HAS_PAY_Y = 1; 
 | 
  
 | 
    /** 
 | 
     * 是否已打款 否 
 | 
     */ 
 | 
    public static final int HAS_PAY_N = 0; 
 | 
  
 | 
    /** 
 | 
     * 主键 
 | 
     */ 
 | 
    private Long id; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 店铺 
 | 
     */ 
 | 
    private Long shopId; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 申请金额 
 | 
     */ 
 | 
    private BigDecimal applyMoney; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 申请状态 
 | 
     */ 
 | 
    private Integer applyStatus; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 申请单号 
 | 
     */ 
 | 
    private String applyNo; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 商户企业付款单号 
 | 
     */ 
 | 
    private String partnerTradeNo; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 银行卡号 
 | 
     */ 
 | 
    private String bankNo; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 付款时间 
 | 
     */ 
 | 
    private Date withdrawTime; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 审批人 
 | 
     */ 
 | 
    private Long userId; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 手续费 
 | 
     */ 
 | 
    private BigDecimal cmmsAnt; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 公司id 
 | 
     */ 
 | 
    private Long comId; 
 | 
  
 | 
    /** 
 | 
     * 是否已打款 
 | 
     */ 
 | 
    private Integer isHasPay = 0; 
 | 
  
 | 
    /** 
 | 
     * 开户行 
 | 
     */ 
 | 
    private String bankName; 
 | 
  
 | 
    /** 
 | 
     * 开户人姓名 
 | 
     */ 
 | 
    private String bankOwnerName; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 店铺名称 
 | 
     */ 
 | 
    @Extend 
 | 
    private String shopName; 
 | 
  
 | 
    /** 
 | 
     * 审批人 
 | 
     */ 
 | 
    @Extend 
 | 
    private String userName; 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
  
 | 
    public void setId(Long id) { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
  
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
  
 | 
    public String getBankName() { 
 | 
        return bankName; 
 | 
    } 
 | 
  
 | 
    public void setBankName(String bankName) { 
 | 
        this.bankName = bankName; 
 | 
    } 
 | 
  
 | 
    public String getBankOwnerName() { 
 | 
        return bankOwnerName; 
 | 
    } 
 | 
  
 | 
    public void setBankOwnerName(String bankOwnerName) { 
 | 
        this.bankOwnerName = bankOwnerName; 
 | 
    } 
 | 
  
 | 
    public BigDecimal getApplyMoney() { 
 | 
        return applyMoney; 
 | 
    } 
 | 
  
 | 
    public void setApplyMoney(BigDecimal applyMoney) { 
 | 
        this.applyMoney = applyMoney; 
 | 
    } 
 | 
  
 | 
    public void setCmmsAnt(BigDecimal cmmsAnt) { 
 | 
        this.cmmsAnt = cmmsAnt; 
 | 
    } 
 | 
  
 | 
    public Integer getApplyStatus() { 
 | 
        return applyStatus; 
 | 
    } 
 | 
  
 | 
    public void setApplyStatus(Integer applyStatus) { 
 | 
        this.applyStatus = applyStatus; 
 | 
    } 
 | 
  
 | 
  
 | 
    public String getApplyNo() { 
 | 
        return applyNo; 
 | 
    } 
 | 
  
 | 
    public void setApplyNo(String applyNo) { 
 | 
        this.applyNo = applyNo; 
 | 
    } 
 | 
  
 | 
  
 | 
    public String getPartnerTradeNo() { 
 | 
        return partnerTradeNo; 
 | 
    } 
 | 
  
 | 
    public void setPartnerTradeNo(String partnerTradeNo) { 
 | 
        this.partnerTradeNo = partnerTradeNo; 
 | 
    } 
 | 
  
 | 
  
 | 
    public String getBankNo() { 
 | 
        return bankNo; 
 | 
    } 
 | 
  
 | 
    public void setBankNo(String bankNo) { 
 | 
        this.bankNo = bankNo; 
 | 
    } 
 | 
  
 | 
  
 | 
    public Date getWithdrawTime() { 
 | 
        return withdrawTime; 
 | 
    } 
 | 
  
 | 
    public void setWithdrawTime(Date withdrawTime) { 
 | 
        this.withdrawTime = withdrawTime; 
 | 
    } 
 | 
  
 | 
  
 | 
    public Long getUserId() { 
 | 
        return userId; 
 | 
    } 
 | 
  
 | 
    public void setUserId(Long userId) { 
 | 
        this.userId = userId; 
 | 
    } 
 | 
  
 | 
  
 | 
    public Long getComId() { 
 | 
        return comId; 
 | 
    } 
 | 
  
 | 
    public void setComId(Long comId) { 
 | 
        this.comId = comId; 
 | 
    } 
 | 
  
 | 
    public BigDecimal getCmmsAnt() { 
 | 
        return cmmsAnt; 
 | 
    } 
 | 
  
 | 
    public String getShopName() { 
 | 
        return shopName; 
 | 
    } 
 | 
  
 | 
    public void setShopName(String shopName) { 
 | 
        this.shopName = shopName; 
 | 
    } 
 | 
  
 | 
    public String getUserName() { 
 | 
        return userName; 
 | 
    } 
 | 
  
 | 
    public void setUserName(String userName) { 
 | 
        this.userName = userName; 
 | 
    } 
 | 
  
 | 
    public Integer getIsHasPay() { 
 | 
        return isHasPay; 
 | 
    } 
 | 
  
 | 
    public void setIsHasPay(Integer isHasPay) { 
 | 
        this.isHasPay = isHasPay; 
 | 
    } 
 | 
} 
 |