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

com.mizhousoft.commons.web.antd.CascaderOption Maven / Gradle / Ivy

package com.mizhousoft.commons.web.antd;

import java.util.List;

/**
 * 级联选项
 *
 * @version
 */
public class CascaderOption
{
	// 值
	private String value;

	// 标题
	private String label;

	// 子列表
	private List children;

	/**
	 * 获取value
	 * 
	 * @return
	 */
	public String getValue()
	{
		return value;
	}

	/**
	 * 设置value
	 * 
	 * @param value
	 */
	public void setValue(String value)
	{
		this.value = value;
	}

	/**
	 * 获取label
	 * 
	 * @return
	 */
	public String getLabel()
	{
		return label;
	}

	/**
	 * 设置label
	 * 
	 * @param label
	 */
	public void setLabel(String label)
	{
		this.label = label;
	}

	/**
	 * 获取children
	 * 
	 * @return
	 */
	public List getChildren()
	{
		return children;
	}

	/**
	 * 设置children
	 * 
	 * @param children
	 */
	public void setChildren(List children)
	{
		this.children = children;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy