货主管理新增字段
This commit is contained in:
@@ -220,4 +220,31 @@ public class UserPo {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "制单员nc编码")
|
@ApiModelProperty(name = "制单员nc编码")
|
||||||
private String documentPreparerNcCode;
|
private String documentPreparerNcCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("法人代表")
|
||||||
|
private String legalRepresentative;
|
||||||
|
|
||||||
|
@ApiModelProperty("统一编码")
|
||||||
|
private String unifiedCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册电话")
|
||||||
|
private String registeredPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String registeredAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("传真")
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款银行")
|
||||||
|
private String paymentBank;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款账户")
|
||||||
|
private String paymentAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty("发票抬头")
|
||||||
|
private String invoiceTitle;
|
||||||
|
|
||||||
|
@ApiModelProperty("税号")
|
||||||
|
private String taxNumber;
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -4908,7 +4908,7 @@ public class UserApplicationService {
|
|||||||
Map<String, SysDepartInterfaceInfoPo> sysDepartInterfaceInfoPoMap = sysDepartInterfaceInfoPos.stream().collect(Collectors.toMap(SysDepartInterfaceInfoPo::getInterfaceTypeKey, Function.identity()));
|
Map<String, SysDepartInterfaceInfoPo> sysDepartInterfaceInfoPoMap = sysDepartInterfaceInfoPos.stream().collect(Collectors.toMap(SysDepartInterfaceInfoPo::getInterfaceTypeKey, Function.identity()));
|
||||||
SysDepartInterfaceInfoPo sysDepartInterfaceInfoPo = sysDepartInterfaceInfoPoMap.get("isWT");
|
SysDepartInterfaceInfoPo sysDepartInterfaceInfoPo = sysDepartInterfaceInfoPoMap.get("isWT");
|
||||||
//是否开启
|
//是否开启
|
||||||
if ("1".equals(sysDepartInterfaceInfoPo.getInterfaceTypeValue())) {
|
if (sysDepartInterfaceInfoPo != null && "1".equals(sysDepartInterfaceInfoPo.getInterfaceTypeValue())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
+27
@@ -165,4 +165,31 @@ public class UserEntity extends BaseVOEntity {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "制单员nc编码")
|
@ApiModelProperty(name = "制单员nc编码")
|
||||||
private String documentPreparerNcCode;
|
private String documentPreparerNcCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("法人代表")
|
||||||
|
private String legalRepresentative;
|
||||||
|
|
||||||
|
@ApiModelProperty("统一编码")
|
||||||
|
private String unifiedCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册电话")
|
||||||
|
private String registeredPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String registeredAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("传真")
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款银行")
|
||||||
|
private String paymentBank;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款账户")
|
||||||
|
private String paymentAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty("发票抬头")
|
||||||
|
private String invoiceTitle;
|
||||||
|
|
||||||
|
@ApiModelProperty("税号")
|
||||||
|
private String taxNumber;
|
||||||
}
|
}
|
||||||
|
|||||||
+30
@@ -45,4 +45,34 @@ public class CustomerDO extends BaseVOEntity {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "用户ID集合")
|
@ApiModelProperty(name = "用户ID集合")
|
||||||
private List<Long> userIds;
|
private List<Long> userIds;
|
||||||
|
|
||||||
|
@ApiModelProperty("法人代表")
|
||||||
|
private String legalRepresentative;
|
||||||
|
|
||||||
|
@ApiModelProperty("统一编码")
|
||||||
|
private String unifiedCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册电话")
|
||||||
|
private String registeredPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String registeredAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("传真")
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款银行")
|
||||||
|
private String paymentBank;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款账户")
|
||||||
|
private String paymentAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty("发票抬头")
|
||||||
|
private String invoiceTitle;
|
||||||
|
|
||||||
|
@ApiModelProperty("税号")
|
||||||
|
private String taxNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "邮箱")
|
||||||
|
private String userEmail;
|
||||||
}
|
}
|
||||||
|
|||||||
+27
@@ -254,4 +254,31 @@ public class UserDO extends BaseVOEntity {
|
|||||||
|
|
||||||
@ApiModelProperty(name = "制单员nc编码")
|
@ApiModelProperty(name = "制单员nc编码")
|
||||||
private String documentPreparerNcCode;
|
private String documentPreparerNcCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("法人代表")
|
||||||
|
private String legalRepresentative;
|
||||||
|
|
||||||
|
@ApiModelProperty("统一编码")
|
||||||
|
private String unifiedCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册电话")
|
||||||
|
private String registeredPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String registeredAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("传真")
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款银行")
|
||||||
|
private String paymentBank;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款账户")
|
||||||
|
private String paymentAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty("发票抬头")
|
||||||
|
private String invoiceTitle;
|
||||||
|
|
||||||
|
@ApiModelProperty("税号")
|
||||||
|
private String taxNumber;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,4 +47,33 @@ public class CustomerDTO extends BaseVOEntity {
|
|||||||
@ApiModelProperty("详细地址")
|
@ApiModelProperty("详细地址")
|
||||||
private String userAreaAddress;
|
private String userAreaAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("法人代表")
|
||||||
|
private String legalRepresentative;
|
||||||
|
|
||||||
|
@ApiModelProperty("统一编码")
|
||||||
|
private String unifiedCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册电话")
|
||||||
|
private String registeredPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String registeredAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("传真")
|
||||||
|
private String fax;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款银行")
|
||||||
|
private String paymentBank;
|
||||||
|
|
||||||
|
@ApiModelProperty("付款账户")
|
||||||
|
private String paymentAccount;
|
||||||
|
|
||||||
|
@ApiModelProperty("发票抬头")
|
||||||
|
private String invoiceTitle;
|
||||||
|
|
||||||
|
@ApiModelProperty("税号")
|
||||||
|
private String taxNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "邮箱")
|
||||||
|
private String userEmail;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -70,7 +70,16 @@
|
|||||||
a.department_id,
|
a.department_id,
|
||||||
a.ding_user_id,
|
a.ding_user_id,
|
||||||
a.ding_dept_id,
|
a.ding_dept_id,
|
||||||
a.validity_period_management,a.salesperson_nc_code,a.document_preparer_nc_code
|
a.validity_period_management,a.salesperson_nc_code,a.document_preparer_nc_code,
|
||||||
|
a.legal_representative,
|
||||||
|
a.unified_code,
|
||||||
|
a.registered_phone,
|
||||||
|
a.registered_address,
|
||||||
|
a.fax,
|
||||||
|
a.payment_bank,
|
||||||
|
a.payment_account,
|
||||||
|
a.invoice_title,
|
||||||
|
a.tax_number
|
||||||
FROM "USER" a
|
FROM "USER" a
|
||||||
where a.del_flag = 1
|
where a.del_flag = 1
|
||||||
</sql>
|
</sql>
|
||||||
|
|||||||
Reference in New Issue
Block a user