更新后端,采用Springboot+mybatis
This commit is contained in:
@@ -0,0 +1,163 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class MaterialProperty {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_materialproperty.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_materialproperty.nativeName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String nativename;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_materialproperty.enabled
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Boolean enabled;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_materialproperty.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String sort;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_materialproperty.anotherName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String anothername;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_materialproperty.id
|
||||
*
|
||||
* @return the value of jsh_materialproperty.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_materialproperty.id
|
||||
*
|
||||
* @param id the value for jsh_materialproperty.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_materialproperty.nativeName
|
||||
*
|
||||
* @return the value of jsh_materialproperty.nativeName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getNativename() {
|
||||
return nativename;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_materialproperty.nativeName
|
||||
*
|
||||
* @param nativename the value for jsh_materialproperty.nativeName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setNativename(String nativename) {
|
||||
this.nativename = nativename == null ? null : nativename.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_materialproperty.enabled
|
||||
*
|
||||
* @return the value of jsh_materialproperty.enabled
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Boolean getEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_materialproperty.enabled
|
||||
*
|
||||
* @param enabled the value for jsh_materialproperty.enabled
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setEnabled(Boolean enabled) {
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_materialproperty.sort
|
||||
*
|
||||
* @return the value of jsh_materialproperty.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getSort() {
|
||||
return sort;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_materialproperty.sort
|
||||
*
|
||||
* @param sort the value for jsh_materialproperty.sort
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setSort(String sort) {
|
||||
this.sort = sort == null ? null : sort.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_materialproperty.anotherName
|
||||
*
|
||||
* @return the value of jsh_materialproperty.anotherName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getAnothername() {
|
||||
return anothername;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_materialproperty.anotherName
|
||||
*
|
||||
* @param anothername the value for jsh_materialproperty.anotherName
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAnothername(String anothername) {
|
||||
this.anothername = anothername == null ? null : anothername.trim();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user