提交 | 用户 | age
|
4db575
|
1 |
package com.hz.his.dto; |
F |
2 |
|
|
3 |
|
e44f07
|
4 |
import com.hz.his.dto.common.DCommonDto; |
4db575
|
5 |
import lombok.Data; |
F |
6 |
|
|
7 |
import java.util.Date; |
|
8 |
|
|
9 |
/** |
|
10 |
* 到访记录 |
|
11 |
**/ |
|
12 |
@Data |
e44f07
|
13 |
public class DReturnVisitDto extends DCommonDto { |
4db575
|
14 |
|
F |
15 |
private String userId; |
|
16 |
private Date planStartTime; |
|
17 |
private Date planEndTime; |
|
18 |
private Date returnVisitStartTime; |
|
19 |
private Date returnVisitEndTime; |
|
20 |
private Date doneStartTime; |
|
21 |
private Date doneEndTime; |
|
22 |
private String returnVisitType; |
|
23 |
private String returnVisitPlan; |
|
24 |
private String returnVisitMethod; |
|
25 |
private Integer returnVisitStatus; |
|
26 |
private Integer doneStatus; |
|
27 |
private Integer timeoutStatus; |
|
28 |
private Integer visitResultStatus; |
|
29 |
private Integer satisfiedStatus; |
|
30 |
private String shopId; |
|
31 |
private String roleId; |
|
32 |
private String createPersonName; |
|
33 |
private String channelType; |
|
34 |
private String createPersonId; |
|
35 |
private String visitPersonId; |
|
36 |
private String corpId; |
|
37 |
private String corpName; |
|
38 |
private String shopIds; |
|
39 |
|
|
40 |
} |