|
@@ -28,22 +28,22 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
private String shipperAbbreviation;
|
|
|
|
|
|
/**
|
|
|
- * 属分公司(SHIPPER_COMPANY_BRANCH,VARCHAR,32)
|
|
|
+ * 父级ID(SHIPPER_FATHER_ID,DECIMAL,0)
|
|
|
*/
|
|
|
- @ApiModelProperty(value="属分公司",required=false)
|
|
|
- private String shipperCompanyBranch;
|
|
|
+ @ApiModelProperty(value="父级ID",required=false)
|
|
|
+ private BigDecimal shipperFatherId;
|
|
|
|
|
|
/**
|
|
|
- * 分公司下属分厂(SHIPPER_BRANCH_FACTORY,VARCHAR,32)
|
|
|
+ * SSO主键(SHIPPER_SSO_ID,VARCHAR,32)
|
|
|
*/
|
|
|
- @ApiModelProperty(value="分公司下属分厂",required=false)
|
|
|
- private String shipperBranchFactory;
|
|
|
+ @ApiModelProperty(value="SSO主键",required=false)
|
|
|
+ private String shipperSsoId;
|
|
|
|
|
|
/**
|
|
|
- * 分厂下属区域(SHIPPER_FACTORY_AREA,VARCHAR,32)
|
|
|
+ * 部门级别(SHIPPER_DEPARTMENT_LEVEL,VARCHAR,32)
|
|
|
*/
|
|
|
- @ApiModelProperty(value="分厂下属区域",required=false)
|
|
|
- private String shipperFactoryArea;
|
|
|
+ @ApiModelProperty(value="部门级别",required=false)
|
|
|
+ private String shipperDepartmentLevel;
|
|
|
|
|
|
/**
|
|
|
* 区分代码(SHIPPER_PARTITION_CODE,VARCHAR,8)
|
|
@@ -225,6 +225,30 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
@ApiModelProperty(value="逻辑删除",required=false)
|
|
|
private BigDecimal deleted;
|
|
|
|
|
|
+ /**
|
|
|
+ * 属分公司(SHIPPER_COMPANY_BRANCH,VARCHAR,100)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value="属分公司",required=false)
|
|
|
+ private String shipperCompanyBranch;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分公司下属分厂(SHIPPER_BRANCH_FACTORY,VARCHAR,100)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value="分公司下属分厂",required=false)
|
|
|
+ private String shipperBranchFactory;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分厂下属区域(SHIPPER_FACTORY_AREA,VARCHAR,100)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value="分厂下属区域",required=false)
|
|
|
+ private String shipperFactoryArea;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机构编码(SHIPPER_ORG_CODE,VARCHAR,50)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value="机构编码",required=false)
|
|
|
+ private String shipperOrgCode;
|
|
|
+
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@Override
|
|
@@ -261,28 +285,28 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
this.shipperAbbreviation = shipperAbbreviation == null ? null : shipperAbbreviation.trim();
|
|
|
}
|
|
|
|
|
|
- public String getShipperCompanyBranch() {
|
|
|
- return shipperCompanyBranch;
|
|
|
+ public BigDecimal getShipperFatherId() {
|
|
|
+ return shipperFatherId;
|
|
|
}
|
|
|
|
|
|
- public void setShipperCompanyBranch(String shipperCompanyBranch) {
|
|
|
- this.shipperCompanyBranch = shipperCompanyBranch == null ? null : shipperCompanyBranch.trim();
|
|
|
+ public void setShipperFatherId(BigDecimal shipperFatherId) {
|
|
|
+ this.shipperFatherId = shipperFatherId;
|
|
|
}
|
|
|
|
|
|
- public String getShipperBranchFactory() {
|
|
|
- return shipperBranchFactory;
|
|
|
+ public String getShipperSsoId() {
|
|
|
+ return shipperSsoId;
|
|
|
}
|
|
|
|
|
|
- public void setShipperBranchFactory(String shipperBranchFactory) {
|
|
|
- this.shipperBranchFactory = shipperBranchFactory == null ? null : shipperBranchFactory.trim();
|
|
|
+ public void setShipperSsoId(String shipperSsoId) {
|
|
|
+ this.shipperSsoId = shipperSsoId == null ? null : shipperSsoId.trim();
|
|
|
}
|
|
|
|
|
|
- public String getShipperFactoryArea() {
|
|
|
- return shipperFactoryArea;
|
|
|
+ public String getShipperDepartmentLevel() {
|
|
|
+ return shipperDepartmentLevel;
|
|
|
}
|
|
|
|
|
|
- public void setShipperFactoryArea(String shipperFactoryArea) {
|
|
|
- this.shipperFactoryArea = shipperFactoryArea == null ? null : shipperFactoryArea.trim();
|
|
|
+ public void setShipperDepartmentLevel(String shipperDepartmentLevel) {
|
|
|
+ this.shipperDepartmentLevel = shipperDepartmentLevel == null ? null : shipperDepartmentLevel.trim();
|
|
|
}
|
|
|
|
|
|
public String getShipperPartitionCode() {
|
|
@@ -525,6 +549,38 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
this.deleted = deleted;
|
|
|
}
|
|
|
|
|
|
+ public String getShipperCompanyBranch() {
|
|
|
+ return shipperCompanyBranch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShipperCompanyBranch(String shipperCompanyBranch) {
|
|
|
+ this.shipperCompanyBranch = shipperCompanyBranch == null ? null : shipperCompanyBranch.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getShipperBranchFactory() {
|
|
|
+ return shipperBranchFactory;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShipperBranchFactory(String shipperBranchFactory) {
|
|
|
+ this.shipperBranchFactory = shipperBranchFactory == null ? null : shipperBranchFactory.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getShipperFactoryArea() {
|
|
|
+ return shipperFactoryArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShipperFactoryArea(String shipperFactoryArea) {
|
|
|
+ this.shipperFactoryArea = shipperFactoryArea == null ? null : shipperFactoryArea.trim();
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getShipperOrgCode() {
|
|
|
+ return shipperOrgCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShipperOrgCode(String shipperOrgCode) {
|
|
|
+ this.shipperOrgCode = shipperOrgCode == null ? null : shipperOrgCode.trim();
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
StringBuilder sb = new StringBuilder();
|
|
@@ -534,9 +590,9 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
sb.append(", shipperId=").append(shipperId);
|
|
|
sb.append(", shipperName=").append(shipperName);
|
|
|
sb.append(", shipperAbbreviation=").append(shipperAbbreviation);
|
|
|
- sb.append(", shipperCompanyBranch=").append(shipperCompanyBranch);
|
|
|
- sb.append(", shipperBranchFactory=").append(shipperBranchFactory);
|
|
|
- sb.append(", shipperFactoryArea=").append(shipperFactoryArea);
|
|
|
+ sb.append(", shipperFatherId=").append(shipperFatherId);
|
|
|
+ sb.append(", shipperSsoId=").append(shipperSsoId);
|
|
|
+ sb.append(", shipperDepartmentLevel=").append(shipperDepartmentLevel);
|
|
|
sb.append(", shipperPartitionCode=").append(shipperPartitionCode);
|
|
|
sb.append(", shipperAddress=").append(shipperAddress);
|
|
|
sb.append(", shipperLegalRepresentative=").append(shipperLegalRepresentative);
|
|
@@ -567,6 +623,10 @@ public class RmsShipper implements IBasePO<BigDecimal> {
|
|
|
sb.append(", shipperAppid=").append(shipperAppid);
|
|
|
sb.append(", shipperSecretkey=").append(shipperSecretkey);
|
|
|
sb.append(", deleted=").append(deleted);
|
|
|
+ sb.append(", shipperCompanyBranch=").append(shipperCompanyBranch);
|
|
|
+ sb.append(", shipperBranchFactory=").append(shipperBranchFactory);
|
|
|
+ sb.append(", shipperFactoryArea=").append(shipperFactoryArea);
|
|
|
+ sb.append(", shipperOrgCode=").append(shipperOrgCode);
|
|
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
|
sb.append("]");
|
|
|
return sb.toString();
|