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

net.wicp.tams.cas.bean.models.SysOptgroup Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package net.wicp.tams.cas.bean.models;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table sys_optgroup
 */
public class SysOptgroup {

	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_optgroup.id
	 * 
	 */
	private String id;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_optgroup.remark
	 * 
	 */
	private String remark;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_optgroup.parent_id
	 * 
	 */
	private String parentId;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_optgroup.is_edit
	 * 
	 */
	private String isEdit;
	/**
	 * Database Column Remarks: LIST      下拉列表,值放入字典表的ID        INPUT    输入值    CLASS    自定义类规则 This field was generated by MyBatis Generator. This field corresponds to the database column sys_optgroup.is_valid
	 * 
	 */
	private String isValid;

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table sys_optgroup
	 * 
	 */
	public SysOptgroup(String id, String remark, String parentId, String isEdit, String isValid) {
		this.id = id;
		this.remark = remark;
		this.parentId = parentId;
		this.isEdit = isEdit;
		this.isValid = isValid;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table sys_optgroup
	 * 
	 */
	public SysOptgroup() {
		super();
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_optgroup.id
	 * @return  the value of sys_optgroup.id
	 * 
	 */
	public String getId() {
		return id;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_optgroup.id
	 * @param id  the value for sys_optgroup.id
	 * 
	 */
	public void setId(String id) {
		this.id = id;
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_optgroup.remark
	 * @return  the value of sys_optgroup.remark
	 * 
	 */
	public String getRemark() {
		return remark;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_optgroup.remark
	 * @param remark  the value for sys_optgroup.remark
	 * 
	 */
	public void setRemark(String remark) {
		this.remark = remark;
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_optgroup.parent_id
	 * @return  the value of sys_optgroup.parent_id
	 * 
	 */
	public String getParentId() {
		return parentId;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_optgroup.parent_id
	 * @param parentId  the value for sys_optgroup.parent_id
	 * 
	 */
	public void setParentId(String parentId) {
		this.parentId = parentId;
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_optgroup.is_edit
	 * @return  the value of sys_optgroup.is_edit
	 * 
	 */
	public String getIsEdit() {
		return isEdit;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_optgroup.is_edit
	 * @param isEdit  the value for sys_optgroup.is_edit
	 * 
	 */
	public void setIsEdit(String isEdit) {
		this.isEdit = isEdit;
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_optgroup.is_valid
	 * @return  the value of sys_optgroup.is_valid
	 * 
	 */
	public String getIsValid() {
		return isValid;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_optgroup.is_valid
	 * @param isValid  the value for sys_optgroup.is_valid
	 * 
	 */
	public void setIsValid(String isValid) {
		this.isValid = isValid;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy