更新后端,采用Springboot+mybatis
This commit is contained in:
195
src/main/java/com/jsh/erp/datasource/entities/AssetName.java
Normal file
195
src/main/java/com/jsh/erp/datasource/entities/AssetName.java
Normal file
@@ -0,0 +1,195 @@
|
||||
package com.jsh.erp.datasource.entities;
|
||||
|
||||
public class AssetName {
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.assetname
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String assetname;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.assetcategoryID
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Long assetcategoryid;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.isystem
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Short isystem;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.isconsumables
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private Short isconsumables;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_assetname.description
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_assetname.id
|
||||
*
|
||||
* @return the value of jsh_assetname.id
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.id
|
||||
*
|
||||
* @param id the value for jsh_assetname.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_assetname.assetname
|
||||
*
|
||||
* @return the value of jsh_assetname.assetname
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getAssetname() {
|
||||
return assetname;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.assetname
|
||||
*
|
||||
* @param assetname the value for jsh_assetname.assetname
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAssetname(String assetname) {
|
||||
this.assetname = assetname == null ? null : assetname.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_assetname.assetcategoryID
|
||||
*
|
||||
* @return the value of jsh_assetname.assetcategoryID
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Long getAssetcategoryid() {
|
||||
return assetcategoryid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.assetcategoryID
|
||||
*
|
||||
* @param assetcategoryid the value for jsh_assetname.assetcategoryID
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setAssetcategoryid(Long assetcategoryid) {
|
||||
this.assetcategoryid = assetcategoryid;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_assetname.isystem
|
||||
*
|
||||
* @return the value of jsh_assetname.isystem
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Short getIsystem() {
|
||||
return isystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.isystem
|
||||
*
|
||||
* @param isystem the value for jsh_assetname.isystem
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setIsystem(Short isystem) {
|
||||
this.isystem = isystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_assetname.isconsumables
|
||||
*
|
||||
* @return the value of jsh_assetname.isconsumables
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public Short getIsconsumables() {
|
||||
return isconsumables;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.isconsumables
|
||||
*
|
||||
* @param isconsumables the value for jsh_assetname.isconsumables
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setIsconsumables(Short isconsumables) {
|
||||
this.isconsumables = isconsumables;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_assetname.description
|
||||
*
|
||||
* @return the value of jsh_assetname.description
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_assetname.description
|
||||
*
|
||||
* @param description the value for jsh_assetname.description
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user