|
|
@@ -0,0 +1,70 @@
|
|
|
+package com.usoftchina.saas.commons.dto;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+public class InitStatusDTO implements Serializable {
|
|
|
+
|
|
|
+ private Long companyId;
|
|
|
+ private boolean baseSet;
|
|
|
+ private boolean warehouse;
|
|
|
+ private boolean product;
|
|
|
+ private boolean customer;
|
|
|
+ private boolean vendor;
|
|
|
+ private boolean begin;
|
|
|
+
|
|
|
+ public boolean isBegin() {
|
|
|
+ return begin;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBegin(boolean begin) {
|
|
|
+ this.begin = begin;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCompanyId() {
|
|
|
+ return companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyId(Long companyId) {
|
|
|
+ this.companyId = companyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isBaseSet() {
|
|
|
+ return baseSet;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBaseSet(boolean baseSet) {
|
|
|
+ this.baseSet = baseSet;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isWarehouse() {
|
|
|
+ return warehouse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWarehouse(boolean warehouse) {
|
|
|
+ this.warehouse = warehouse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isProduct() {
|
|
|
+ return product;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProduct(boolean product) {
|
|
|
+ this.product = product;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isCustomer() {
|
|
|
+ return customer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomer(boolean customer) {
|
|
|
+ this.customer = customer;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isVendor() {
|
|
|
+ return vendor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVendor(boolean vendor) {
|
|
|
+ this.vendor = vendor;
|
|
|
+ }
|
|
|
+}
|