xinyb
2024-05-24 a236bf6cf152e2975f1c5cffa77a9b60d138ab6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.yc.sdk.weixincp3rd.entity;
 
import lombok.Data;
 
/**
 * @BelongsProject: eCoWorksV3
 * @BelongsPackage: com.yc.sdk.weixincp3rd.entity
 * @author: xinyb
 * @CreateTime: 2024-04-29  17:49
 * @Description:
 */
@Data
public class AfterSalesParameters {
    private Integer formId = 640210;
    private String acceptSource;//报修单值默认是报修,投诉单值默认是投诉
    private String cltCode;
    private String cltName;
    private String tel;//电话
    private String propertyAddress;//报修地址
    private String preSendDate;//预约上门时间
    private String memo;//申报原因或投诉内容
 
 
    private String refCode;//关联报修单或投诉单的单号
    private Integer refFormId;//关联报修单或投诉单的功能号
    private String overallEvaluationScore;//总体评价
    private String installEvaluationScore;//安装师傅满意度
    private String afterSalesEvaluationScore;//售后人员满意度
    private String deliveryEvaluationScore;//配送人员满意度
    private String hDMemo;//备注
    private String uploadFiles;//附件   A05AAE4B-3DF9-4961-9D5B-37620011F078;123;123;541形式
 
    private String userCode;
    private String openId;
}