package com.yanzuoguang.wxxcx.logistics.vo;

/***
 * 服务类型
 *
 * @author:heyanou
 */
public class LogisticsService {
    /**
     * <p>
     *     是否必填:是
     *     描述:服务类型ID,详见已经支持的快递公司基本信息
     * </p>
     */
   private Long   service_type;
    /**
     * <p>
     *     是否必填:是
     *     描述:服务名称,详见已经支持的快递公司基本信息
     * </p>
     */
   private String service_name;

    public Long getService_type() {
        return service_type;
    }

    public void setService_type(Long service_type) {
        this.service_type = service_type;
    }

    public String getService_name() {
        return service_name;
    }

    public void setService_name(String service_name) {
        this.service_name = service_name;
    }
}