0325-北仑:客群修改+pad走访
This commit is contained in:
@@ -117,4 +117,40 @@ public class VisitInfo {
|
||||
@ApiModelProperty(value = "走访备注")
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty(value = "互动地址")
|
||||
private String interAddr;
|
||||
|
||||
@ApiModelProperty(value = "协同员工名称")
|
||||
private String colStafName;
|
||||
|
||||
@ApiModelProperty(value = "后续备注")
|
||||
private String laterNote;
|
||||
|
||||
@ApiModelProperty(value = "意向产品值")
|
||||
private String intentionProductValue;
|
||||
|
||||
@ApiModelProperty(value = "反馈状态")
|
||||
private String feedbackStatus;
|
||||
|
||||
@ApiModelProperty(value = "走访来源")
|
||||
private String sourceOfInterview;
|
||||
|
||||
@ApiModelProperty(value = "文件名")
|
||||
private String filename;
|
||||
|
||||
@ApiModelProperty(value = "外呼状态")
|
||||
private String outCallStatus;
|
||||
|
||||
@ApiModelProperty(value = "外呼意向")
|
||||
private String outCallIntention;
|
||||
|
||||
@ApiModelProperty(value = "来源")
|
||||
private String source;
|
||||
|
||||
@ApiModelProperty(value = "分析值")
|
||||
private String analysisValue;
|
||||
|
||||
@ApiModelProperty(value = "设备")
|
||||
private String facility;
|
||||
|
||||
}
|
||||
|
||||
@@ -13,6 +13,10 @@ public class VisitInfoDTO {
|
||||
@ApiModelProperty(value = "柜员名称")
|
||||
private String visName;
|
||||
|
||||
/** 柜员号 */
|
||||
@ApiModelProperty(value = "柜员号")
|
||||
private String visId;
|
||||
|
||||
/** 走访时间 */
|
||||
@ApiModelProperty(value = "走访时间")
|
||||
private String visTime;
|
||||
|
||||
@@ -128,4 +128,40 @@ public class VisitInfoVO {
|
||||
@ApiModelProperty(value = "走访结果")
|
||||
private String interRes;
|
||||
|
||||
@ApiModelProperty(value = "实地拜访地址")
|
||||
private String interAddr;
|
||||
|
||||
@ApiModelProperty(value = "协同走访客户经理")
|
||||
private String colStafName;
|
||||
|
||||
@ApiModelProperty(value = "事后备注")
|
||||
private String laterNote;
|
||||
|
||||
@ApiModelProperty(value = "走访反馈")
|
||||
private String intentionProductValue;
|
||||
|
||||
@ApiModelProperty(value = "反馈状态")
|
||||
private String feedbackStatus;
|
||||
|
||||
@ApiModelProperty(value = "走访来源")
|
||||
private String sourceOfInterview;
|
||||
|
||||
@ApiModelProperty(value = "批量导入文件名")
|
||||
private String filename;
|
||||
|
||||
@ApiModelProperty(value = "外呼状态")
|
||||
private String outCallStatus;
|
||||
|
||||
@ApiModelProperty(value = "客户意愿")
|
||||
private String outCallIntention;
|
||||
|
||||
@ApiModelProperty(value = "走访来源:1null:pad 2:企业微信 3:pc")
|
||||
private String source;
|
||||
|
||||
@ApiModelProperty(value = "nlp模型提取")
|
||||
private String analysisValue;
|
||||
|
||||
@ApiModelProperty(value = "预授信额度")
|
||||
private String facility;
|
||||
|
||||
}
|
||||
|
||||
@@ -127,6 +127,18 @@
|
||||
<result property="remark" column="remark" />
|
||||
<result property="custType" column="cust_type" />
|
||||
<result property="deptName" column="dept_name" />
|
||||
<result property="interAddr" column="inter_addr" />
|
||||
<result property="colStafName" column="col_staf_name" />
|
||||
<result property="laterNote" column="later_note" />
|
||||
<result property="intentionProductValue" column="intention_product_value" />
|
||||
<result property="feedbackStatus" column="feedback_status" />
|
||||
<result property="sourceOfInterview" column="source_of_interview" />
|
||||
<result property="filename" column="filename" />
|
||||
<result property="outCallStatus" column="out_call_status" />
|
||||
<result property="outCallIntention" column="out_call_intention" />
|
||||
<result property="source" column="source" />
|
||||
<result property="analysisValue" column="analysis_value" />
|
||||
<result property="facility" column="facility" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectSysCampaignVo">
|
||||
@@ -1384,12 +1396,15 @@
|
||||
<select id="selectVisitInfoList" parameterType="VisitInfoDTO" resultType="VisitInfoVO">
|
||||
select vi.id,vi.campaign_id,vi.campaign_name,vi.vis_name,vi.vis_id,vi.dept_id,d.dept_name,vi.vis_time,vi.cust_name,vi.cust_type,vi.cust_idc,
|
||||
vi.social_credit_code,vi.create_by,vi.create_time,vi.update_by,vi.update_time,vi.remark,vi.sign_in_time,vi.sign_out_time,vi.sign_in_address,
|
||||
vi.sign_out_address,vi.abnormal_visit_tag,vi.abnormal_visit_info,vi.sign_in_coordinate,vi.sign_out_coordinate,vi.is_valid_cust,vi.marketing_way,vi.inter_res
|
||||
vi.sign_out_address,vi.abnormal_visit_tag,vi.abnormal_visit_info,vi.sign_in_coordinate,vi.sign_out_coordinate,vi.is_valid_cust,vi.marketing_way,vi.inter_res,
|
||||
vi.inter_addr,vi.col_staf_name,vi.later_note,vi.intention_product_value,vi.feedback_status,vi.source_of_interview,vi.filename,
|
||||
vi.out_call_status,vi.out_call_intention,vi.source,vi.analysis_value,vi.facility
|
||||
from visit_info vi
|
||||
left join sys_dept d on vi.dept_id = d.dept_id
|
||||
<where>
|
||||
<if test="custType != null and custType != ''"> and vi.cust_type = #{custType}</if>
|
||||
<if test="visName != null and visName != ''"> and vi.vis_name like concat('%', #{visName}, '%')</if>
|
||||
<if test="visId != null and visId != ''"> and vi.vis_id = #{visId}</if>
|
||||
<if test="custIdc != null and custIdc != ''"> and vi.cust_idc = #{custIdc}</if>
|
||||
<if test="socialCreditCode != null and socialCreditCode != ''"> and vi.social_credit_code = #{socialCreditCode}</if>
|
||||
<if test="abnormalVisitTag != null and abnormalVisitTag != ''"> and vi.abnormal_visit_tag = #{abnormalVisitTag}</if>
|
||||
@@ -1410,4 +1425,4 @@
|
||||
order by vi.sign_in_time desc
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user