shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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.iplatform.base.pojo.notify;
 
import com.walker.web.param.ParamRequest;
 
/**
 * 查看提醒通知配置模板详情,需要参数。
 * @date 2023-08-25
 */
public class InfoParam extends ParamRequest {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getDetailType() {
        return detailType;
    }
 
    public void setDetailType(String detailType) {
        this.detailType = detailType;
    }
 
    //    @ApiModelProperty(value = "通知id")
//    @NotNull(message = "通知id不能为空")
    private Long id;
 
//    @ApiModelProperty(value = "wechat-公众号模板消息,routine-小程序订阅消息,sms-短信")
//    @NotEmpty(message = "详情类型不能为空")
//    @StringContains(limitValues = {"wechat","routine","sms"}, message = "未知的详情类型")
    private String detailType;
}