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

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

package net.wicp.tams.cas.bean.models;

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

	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_position.id
	 * 
	 */
	private Long id;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_position.position_name
	 * 
	 */
	private String positionName;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database column sys_position.org_id
	 * 
	 */
	private Long orgId;
	/**
	 * Database Column Remarks: 租户id This field was generated by MyBatis Generator. This field corresponds to the database column sys_position.tenant_id
	 * 
	 */
	private Long tenantId;

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table sys_position
	 * 
	 */
	public SysPosition(Long id, String positionName, Long orgId, Long tenantId) {
		this.id = id;
		this.positionName = positionName;
		this.orgId = orgId;
		this.tenantId = tenantId;
	}

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

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

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

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_position.position_name
	 * @return  the value of sys_position.position_name
	 * 
	 */
	public String getPositionName() {
		return positionName;
	}

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

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_position.org_id
	 * @return  the value of sys_position.org_id
	 * 
	 */
	public Long getOrgId() {
		return orgId;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_position.org_id
	 * @param orgId  the value for sys_position.org_id
	 * 
	 */
	public void setOrgId(Long orgId) {
		this.orgId = orgId;
	}

	/**
	 * This method was generated by MyBatis Generator. This method returns the value of the database column sys_position.tenant_id
	 * @return  the value of sys_position.tenant_id
	 * 
	 */
	public Long getTenantId() {
		return tenantId;
	}

	/**
	 * This method was generated by MyBatis Generator. This method sets the value of the database column sys_position.tenant_id
	 * @param tenantId  the value for sys_position.tenant_id
	 * 
	 */
	public void setTenantId(Long tenantId) {
		this.tenantId = tenantId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy