添加删除标记

This commit is contained in:
qiankunpingtai
2019-03-27 17:10:32 +08:00
parent e072cb194a
commit e437abb0b0
60 changed files with 2474 additions and 110 deletions

View File

@@ -41,6 +41,14 @@ public class UserBusiness {
*/
private String btnstr;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column jsh_userbusiness.delete_Flag
*
* @mbggenerated
*/
private String deleteFlag;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column jsh_userbusiness.Id
@@ -160,4 +168,28 @@ public class UserBusiness {
public void setBtnstr(String btnstr) {
this.btnstr = btnstr == null ? null : btnstr.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column jsh_userbusiness.delete_Flag
*
* @return the value of jsh_userbusiness.delete_Flag
*
* @mbggenerated
*/
public String getDeleteFlag() {
return deleteFlag;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column jsh_userbusiness.delete_Flag
*
* @param deleteFlag the value for jsh_userbusiness.delete_Flag
*
* @mbggenerated
*/
public void setDeleteFlag(String deleteFlag) {
this.deleteFlag = deleteFlag == null ? null : deleteFlag.trim();
}
}