chenhj
昨天 a4d3ac72a1d250517dcbc554aea4f09e505b7171
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.ruoyi.basic.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * <br>
 * 客户回访提醒Dto
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/05 10:26
 */
@Data
public class CustomerReturnVisitDto {
    /**
     * 回访提醒主键ID
     */
    private Long id;
 
    /**
     * 关联客户ID (对应 customer 表的 id)
     */
    private Integer customerId;
 
    /**
     * 提醒开关状态 (0:关闭, 1:开启)
     */
    private Integer isEnabled;
 
    /**
     * 提醒的具体内容
     */
    private String content;
 
    /**
     * 设定的提醒触发时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime reminderTime;
 
    /**
     * 处理状态 (0:待提醒, 1:已提醒)
     */
    private Integer isCompleted;
 
    /**
     * 接收提醒的用户ID
     */
    private Long remindUserId;
}