|
@@ -4,6 +4,8 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
+
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -21,6 +23,11 @@ public class InformAddBo {
|
|
|
/** 1 学员通知 */
|
|
|
@ApiModelProperty("1 学员通知")
|
|
|
private Integer informType;
|
|
|
+
|
|
|
+ /** 是否发送未购买的学员 1发送 2只发送购买过得学员 */
|
|
|
+ @ApiModelProperty("是否发送未购买的学员 1发送 2只发送购买过得学员(全都买了也传1)")
|
|
|
+ @NotNull
|
|
|
+ private Long orderStatus;
|
|
|
/** 通知标题 */
|
|
|
@ApiModelProperty("通知标题")
|
|
|
private String informName;
|