cn.ipokerface.admin.entity.Configuration Maven / Gradle / Ivy
package cn.ipokerface.admin.entity;
import cn.ipokerface.common.model.entity.BaseTableEntity;
/**
*
* [CONFIGURATION_PROPERTY]
*/
public class Configuration extends BaseTableEntity {
/**
* 参数码
* [CODE]
* 2021-04-11T18:41:01.171
*/
private String code;
/**
* 名字
* [NAME]
* 2021-04-11T18:41:01.172
*/
private String name;
/**
* 值
* [VALUE]
* 2021-04-11T18:41:01.172
*/
private String value;
/**
* 值的类型 java.lang.Integer
* [TYPE]
* 2021-04-11T18:41:01.172
*/
private String type;
/**
* 备注字段
* [REMARK]
* 2021-04-11T18:41:01.172
*/
private String remark;
/**
* 创建人
* [CREATED_BY]
* 2021-04-11T18:41:01.172
*/
private Long createdBy;
/**
* 更新人
* [UPDATED_BY]
* 2021-04-11T18:41:01.172
*/
private Long updatedBy;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.CODE
*
* @return the value of CONFIGURATION_PROPERTY.CODE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public String getCode() {
return code;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.CODE
*
* @param code the value for CONFIGURATION_PROPERTY.CODE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setCode(String code) {
this.code = code;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.NAME
*
* @return the value of CONFIGURATION_PROPERTY.NAME
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.NAME
*
* @param name the value for CONFIGURATION_PROPERTY.NAME
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setName(String name) {
this.name = name;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.VALUE
*
* @return the value of CONFIGURATION_PROPERTY.VALUE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public String getValue() {
return value;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.VALUE
*
* @param value the value for CONFIGURATION_PROPERTY.VALUE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setValue(String value) {
this.value = value;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.TYPE
*
* @return the value of CONFIGURATION_PROPERTY.TYPE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public String getType() {
return type;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.TYPE
*
* @param type the value for CONFIGURATION_PROPERTY.TYPE
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setType(String type) {
this.type = type;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.REMARK
*
* @return the value of CONFIGURATION_PROPERTY.REMARK
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public String getRemark() {
return remark;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.REMARK
*
* @param remark the value for CONFIGURATION_PROPERTY.REMARK
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.CREATED_BY
*
* @return the value of CONFIGURATION_PROPERTY.CREATED_BY
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public Long getCreatedBy() {
return createdBy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.CREATED_BY
*
* @param createdBy the value for CONFIGURATION_PROPERTY.CREATED_BY
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setCreatedBy(Long createdBy) {
this.createdBy = createdBy;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column CONFIGURATION_PROPERTY.UPDATED_BY
*
* @return the value of CONFIGURATION_PROPERTY.UPDATED_BY
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public Long getUpdatedBy() {
return updatedBy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column CONFIGURATION_PROPERTY.UPDATED_BY
*
* @param updatedBy the value for CONFIGURATION_PROPERTY.UPDATED_BY
*
* .generated Sun Apr 11 18:41:01 CST 2021
*/
public void setUpdatedBy(Long updatedBy) {
this.updatedBy = updatedBy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy