增加仓库和客户配置开关(完成1阶段)
This commit is contained in:
@@ -57,6 +57,22 @@ public class SystemConfig {
|
||||
*/
|
||||
private String companyPostCode;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_systemconfig.depot_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String depotFlag;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_systemconfig.customer_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
private String customerFlag;
|
||||
|
||||
/**
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column jsh_systemconfig.tenant_id
|
||||
@@ -241,6 +257,54 @@ public class SystemConfig {
|
||||
this.companyPostCode = companyPostCode == null ? null : companyPostCode.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_systemconfig.depot_flag
|
||||
*
|
||||
* @return the value of jsh_systemconfig.depot_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getDepotFlag() {
|
||||
return depotFlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_systemconfig.depot_flag
|
||||
*
|
||||
* @param depotFlag the value for jsh_systemconfig.depot_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setDepotFlag(String depotFlag) {
|
||||
this.depotFlag = depotFlag == null ? null : depotFlag.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_systemconfig.customer_flag
|
||||
*
|
||||
* @return the value of jsh_systemconfig.customer_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public String getCustomerFlag() {
|
||||
return customerFlag;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method sets the value of the database column jsh_systemconfig.customer_flag
|
||||
*
|
||||
* @param customerFlag the value for jsh_systemconfig.customer_flag
|
||||
*
|
||||
* @mbggenerated
|
||||
*/
|
||||
public void setCustomerFlag(String customerFlag) {
|
||||
this.customerFlag = customerFlag == null ? null : customerFlag.trim();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method was generated by MyBatis Generator.
|
||||
* This method returns the value of the database column jsh_systemconfig.tenant_id
|
||||
|
||||
Reference in New Issue
Block a user