|
@@ -6,6 +6,9 @@ import javax.validation.constraints.Email;
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
import javax.validation.constraints.Size;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import com.ozs.common.core.domain.BaseEntity;
|
|
@@ -78,6 +81,10 @@ public class SysDept extends BaseEntity
|
|
|
* 账号
|
|
|
*/
|
|
|
private String accountNumber;
|
|
|
+ /**
|
|
|
+ * 采购服务站名称
|
|
|
+ */
|
|
|
+ private String purchaseServices;
|
|
|
|
|
|
public String getProjectContact() {
|
|
|
return projectContact;
|
|
@@ -253,6 +260,14 @@ public class SysDept extends BaseEntity
|
|
|
this.children = children;
|
|
|
}
|
|
|
|
|
|
+ public String getPurchaseServices() {
|
|
|
+ return purchaseServices;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPurchaseServices(String purchaseServices) {
|
|
|
+ this.purchaseServices = purchaseServices;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
@@ -276,6 +291,7 @@ public class SysDept extends BaseEntity
|
|
|
.append("bankAccountName", getBankAccountName())
|
|
|
.append("bankOfDeposit", getBankOfDeposit())
|
|
|
.append("accountNumber", getAccountNumber())
|
|
|
+ .append("purchaseServices",getPurchaseServices())
|
|
|
.toString();
|
|
|
}
|
|
|
}
|