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

org.sdn.api.service.business.request.info.BusinessInfoDelReqDTO Maven / Gradle / Ivy

There is a newer version: 1.2.2.2-RELEASE
Show newest version
package org.sdn.api.service.business.request.info;

/**
 * 业务删除
 *
 * @author:fulong
 * @create:2018/11/16 18:21.
 */
public class BusinessInfoDelReqDTO{

    /**
     * 业务ID
     */
    private Long id;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    @Override
    public String toString() {
        return "BusinessInfoDelReqDTO{" +
                "id=" + id +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy