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

com.dahuatech.icc.multiinone.event.domain.SubsystemVo Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.icc.multiinone.event.domain;



/**
 * Created by 32514 on 2019-06-13.
 */
public class SubsystemVo {
    private final Integer subsystemType = 0;//0代表子系统
    private String name;//订阅者名称
    //@NotNull(message = SUBSCRIBE_SUBSYSTEM_MAGIC_NOT_NULL)
    private String magic;//订阅者ip,端口等信息

    public Integer getSubsystemType() {
        return subsystemType;
    }

    public void setSubsystemType(Integer subsystemType) {
//        this.subsystemType = subsystemType;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getMagic() {
        return magic;
    }

    public void setMagic(String magic) {
        this.magic = magic;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy