CashierOrderDTO.java 2.07 KB
package com.diligrp.cashier.boss.domain;

public class CashierOrderDTO {
    // 接入商户
    private Long mchId;
    // 业务系统用户标识
    private String userId;
    // 收银台类型 - H5收银台等
    private Integer cashierType;
    // 商品描述
    private String goods;
    // 申请金额
    private Long amount;
    // 超时间隔时间 - 秒
    private Integer timeout;
    // 外部流水号
    private String outTradeNo;
    // 回调地址
    private String notifyUrl;
    // 交易描述
    private String description;
    // 附加数据
    private String attach;

    public Long getMchId() {
        return mchId;
    }

    public void setMchId(Long mchId) {
        this.mchId = mchId;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public Integer getCashierType() {
        return cashierType;
    }

    public void setCashierType(Integer cashierType) {
        this.cashierType = cashierType;
    }

    public String getGoods() {
        return goods;
    }

    public void setGoods(String goods) {
        this.goods = goods;
    }

    public Long getAmount() {
        return amount;
    }

    public void setAmount(Long amount) {
        this.amount = amount;
    }

    public Integer getTimeout() {
        return timeout;
    }

    public void setTimeout(Integer timeout) {
        this.timeout = timeout;
    }

    public String getOutTradeNo() {
        return outTradeNo;
    }

    public void setOutTradeNo(String outTradeNo) {
        this.outTradeNo = outTradeNo;
    }

    public String getNotifyUrl() {
        return notifyUrl;
    }

    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getAttach() {
        return attach;
    }

    public void setAttach(String attach) {
        this.attach = attach;
    }
}