1.0.59 客户信息把详细地址改名为办公地,新增注册地、商务联系人、商务联系人电话、技术联系人、技术联系人电话字段

dev
yinq 4 days ago
parent 6146479dd5
commit 9e2a65e1bf

@ -68,10 +68,35 @@ public class CrmCustomerInfo extends TenantEntity {
private Long ownerId; private Long ownerId;
/** /**
* *
*/ */
private String detailedAddress; private String detailedAddress;
/**
*
*/
private String registeredAddress;
/**
*
*/
private String businessContact;
/**
*
*/
private String businessContactPhone;
/**
*
*/
private String technicalContact;
/**
*
*/
private String technicalContactPhone;
/** /**
* 10 10-20 21-50 51-200 201-500 500 * 10 10-20 21-50 51-200 201-500 500
*/ */

@ -66,10 +66,35 @@ public class CrmCustomerInfoBo extends BaseEntity {
private Long ownerId; private Long ownerId;
/** /**
* *
*/ */
private String detailedAddress; private String detailedAddress;
/**
*
*/
private String registeredAddress;
/**
*
*/
private String businessContact;
/**
*
*/
private String businessContactPhone;
/**
*
*/
private String technicalContact;
/**
*
*/
private String technicalContactPhone;
/** /**
* 10 10-20 21-50 51-200 201-500 500 * 10 10-20 21-50 51-200 201-500 500
*/ */

@ -94,11 +94,41 @@ public class CrmCustomerInfoVo implements Serializable {
private String ownerName; private String ownerName;
/** /**
* *
*/ */
@ExcelProperty(value = "详细地址") @ExcelProperty(value = "办公地")
private String detailedAddress; private String detailedAddress;
/**
*
*/
@ExcelProperty(value = "注册地")
private String registeredAddress;
/**
*
*/
@ExcelProperty(value = "商务联系人")
private String businessContact;
/**
*
*/
@ExcelProperty(value = "商务联系人电话")
private String businessContactPhone;
/**
*
*/
@ExcelProperty(value = "技术联系人")
private String technicalContact;
/**
*
*/
@ExcelProperty(value = "技术联系人电话")
private String technicalContactPhone;
/** /**
* 10 10-20 21-50 51-200 201-500 500 * 10 10-20 21-50 51-200 201-500 500
*/ */

@ -1,13 +1,46 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper <!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.dromara.oa.crm.mapper.CrmCustomerInfoMapper"> <mapper namespace="org.dromara.oa.crm.mapper.CrmCustomerInfoMapper">
<resultMap type="org.dromara.oa.crm.domain.vo.CrmCustomerInfoVo" id="CrmCustomerInfoResult"> <resultMap type="org.dromara.oa.crm.domain.vo.CrmCustomerInfoVo" id="CrmCustomerInfoResult">
</resultMap> </resultMap>
<select id="selectCustomCrmCustomerInfoVoList" resultMap="CrmCustomerInfoResult"> <select id="selectCustomCrmCustomerInfoVoList" resultMap="CrmCustomerInfoResult">
select customer_id, tenant_id, customer_name, mnemonic_name, industry_id, customer_type, customer_status, customer_level, customer_source, owner_id, detailed_address, customer_scale, parent_customer_id, customer_relationship, legal_representative, business_license_number, tax_number, bank_account_opening, bank_number, oss_id, remark, active_flag, del_flag, create_dept, create_by, create_time, update_by, update_time from crm_customer_info t select customer_id,
tenant_id,
customer_name,
mnemonic_name,
industry_id,
customer_type,
customer_status,
customer_level,
customer_source,
owner_id,
detailed_address,
registered_address,
business_contact,
business_contact_phone,
technical_contact,
technical_contact_phone,
customer_scale,
parent_customer_id,
customer_relationship,
legal_representative,
business_license_number,
tax_number,
bank_account_opening,
bank_number,
oss_id,
remark,
active_flag,
del_flag,
create_dept,
create_by,
create_time,
update_by,
update_time
from crm_customer_info t
${ew.getCustomSqlSegment} ${ew.getCustomSqlSegment}
</select> </select>

Loading…
Cancel
Save