📜  通过电子邮件检查条带客户 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:19.137000             🧑  作者: Mango

代码示例1
Map options = new HashMap<>();
options.put("email", email);
List customers = Customer.list(options).getData();

if (customers.size() > 0) {
    Customer customer = customers.get(0);
    ...