All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liumapp.datapay.sms.model.Parameter Maven / Gradle / Ivy

There is a newer version: v2.0.5
Show newest version
package com.liumapp.datapay.sms.model;

import java.util.List;

/**
 * Created by haoxy on 2018/11/3.
 * E-mail:[email protected]
 * github:https://github.com/haoxiaoyong1014
 */
public class Parameter {

    private String phone;

    private String content;

    private List phones;

    public List getPhones() {
        return phones;
    }

    public void setPhones(List phones) {
        this.phones = phones;
    }

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy