99 lines
3.0 KiB
Java
99 lines
3.0 KiB
Java
package com.yutou.mybatis;
|
|
|
|
import java.util.Date;
|
|
|
|
public class UGroup {
|
|
|
|
/**
|
|
* This field was generated by MyBatis Generator. This field corresponds to the database column u_group.id
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
private Integer id;
|
|
/**
|
|
* This field was generated by MyBatis Generator. This field corresponds to the database column u_group.permission
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
private Integer permission;
|
|
/**
|
|
* This field was generated by MyBatis Generator. This field corresponds to the database column u_group.title
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
private String title;
|
|
/**
|
|
* This field was generated by MyBatis Generator. This field corresponds to the database column u_group.info
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
private String info;
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column u_group.id
|
|
* @return the value of u_group.id
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method sets the value of the database column u_group.id
|
|
* @param id the value for u_group.id
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column u_group.permission
|
|
* @return the value of u_group.permission
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public Integer getPermission() {
|
|
return permission;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method sets the value of the database column u_group.permission
|
|
* @param permission the value for u_group.permission
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public void setPermission(Integer permission) {
|
|
this.permission = permission;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column u_group.title
|
|
* @return the value of u_group.title
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method sets the value of the database column u_group.title
|
|
* @param title the value for u_group.title
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column u_group.info
|
|
* @return the value of u_group.info
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public String getInfo() {
|
|
return info;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator. This method sets the value of the database column u_group.info
|
|
* @param info the value for u_group.info
|
|
* @mbg.generated Mon May 13 14:48:33 CST 2019
|
|
*/
|
|
public void setInfo(String info) {
|
|
this.info = info;
|
|
}
|
|
} |