
export type CheckBarcodeInput = {
    // 特店編號
    MerchantID: string,
    // 手機載具
    BarCode: string,
}

export type CheckBarcodeOutput = {

    RtnCode:number,
    RtnMsg: string,
    // 是否存在
    // Y: 存在
    // N: 不存在
    IsExist: "Y" | "N"
}