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; }