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

com.jeesuite.gateway.model.BizSystem Maven / Gradle / Ivy

The newest version!
package com.jeesuite.gateway.model;

import java.util.List;


public class BizSystem {

	private String id;
	/**
	 * 系统标识
	 */
	private String code;

	/**
	 * 系统名称
	 */
	private String name;

	/**
	 * 系统状态
	 */
	private Integer status;

	
	private List portals;
	
	private List modules;
	

	public String getId() {
		return id;
	}

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

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public String getName() {
		return name;
	}

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

	public Integer getStatus() {
		return status;
	}

	public void setStatus(Integer status) {
		this.status = status;
	}


	public List getPortals() {
		return portals;
	}

	public void setPortals(List portals) {
		this.portals = portals;
	}

	public List getModules() {
		return modules;
	}

	public void setModules(List modules) {
		this.modules = modules;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy