| | |
| | | |
| | | //--- 取值第一个 todo |
| | | |
| | | /**用户所属门店标识 id*/ |
| | | private Set<String> ids = new HashSet<>(); |
| | | /**用户所属门店标识 返回*/ |
| | | private Set<String> shopIds = new HashSet<>(); |
| | | /**用户所属门店名称*/ |
| | | private Set<String> shopNames = new HashSet<>(); |
| | | /**回访类型 字典id"*/ |
| | | private Set<String> returnVisitTypes = new HashSet<>(); |
| | | /**回访类型名称*/ |
| | | private Set<String> returnVisitTypeNames = new HashSet<>(); |
| | | |
| | | /**回访方式 字典id*/ |
| | | private Set<String> returnVisitMethods = new HashSet<>(); |
| | | /**回访方式名称*/ |
| | | private Set<String> returnVisitMethodNames = new HashSet<>(); |
| | | |
| | | /**创建人*/ |
| | | private Set<String> createPersonNames = new HashSet<>(); |
| | | |
| | | /**回访情况(员工回访时候填写)*/ |
| | | private String situation; |
| | | /**回访备注(员工回访时候填写)*/ |
| | | private String visitRemark; |
| | | |
| | | /**回访项目*/ |
| | | private List<String> projectList; |
| | | |
| | | /*** 回访列表子数据**/ |
| | | private List<ReturnVisitListItemVo> itemList = new ArrayList<>(); |