net.wicp.tams.cas.bean.models.SysGroup 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_group
*/
public class SysGroup {
/**
* This field was generated by MyBatis Generator. This field corresponds to the database column sys_group.id
*
*/
private Long id;
/**
* This field was generated by MyBatis Generator. This field corresponds to the database column sys_group.group_name
*
*/
private String groupName;
/**
* This field was generated by MyBatis Generator. This field corresponds to the database column sys_group.org_id
*
*/
private Long orgId;
/**
* Database Column Remarks: 租户id This field was generated by MyBatis Generator. This field corresponds to the database column sys_group.tenant_id
*
*/
private Long tenantId;
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
public SysGroup(Long id, String groupName, Long orgId, Long tenantId) {
this.id = id;
this.groupName = groupName;
this.orgId = orgId;
this.tenantId = tenantId;
}
/**
* This method was generated by MyBatis Generator. This method corresponds to the database table sys_group
*
*/
public SysGroup() {
super();
}
/**
* This method was generated by MyBatis Generator. This method returns the value of the database column sys_group.id
* @return the value of sys_group.id
*
*/
public Long getId() {
return id;
}
/**
* This method was generated by MyBatis Generator. This method sets the value of the database column sys_group.id
* @param id the value for sys_group.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_group.group_name
* @return the value of sys_group.group_name
*
*/
public String getGroupName() {
return groupName;
}
/**
* This method was generated by MyBatis Generator. This method sets the value of the database column sys_group.group_name
* @param groupName the value for sys_group.group_name
*
*/
public void setGroupName(String groupName) {
this.groupName = groupName;
}
/**
* This method was generated by MyBatis Generator. This method returns the value of the database column sys_group.org_id
* @return the value of sys_group.org_id
*
*/
public Long getOrgId() {
return orgId;
}
/**
* This method was generated by MyBatis Generator. This method sets the value of the database column sys_group.org_id
* @param orgId the value for sys_group.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_group.tenant_id
* @return the value of sys_group.tenant_id
*
*/
public Long getTenantId() {
return tenantId;
}
/**
* This method was generated by MyBatis Generator. This method sets the value of the database column sys_group.tenant_id
* @param tenantId the value for sys_group.tenant_id
*
*/
public void setTenantId(Long tenantId) {
this.tenantId = tenantId;
}
}