Merge branch 'master-云门户待阅' into 'uat_code'
待阅功能 See merge request eshop/biz_service_ebtp_extend!8
This commit is contained in:
@ -2,37 +2,29 @@ package com.chinaunicom.mall.ebtp.extend.bizshortmessageemail.entity;
|
||||
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
|
||||
public class NoticeReadingUpdateRequestBody {
|
||||
|
||||
@ApiModelProperty("待阅信息的编号")
|
||||
@NotBlank(message = "待阅编号不能为空" )
|
||||
@Length(message = "待阅编号不能超过{max}个字符",max = 100 )
|
||||
@NotBlank(message = "待阅编号不能为空")
|
||||
@Length(message = "待阅编号不能超过{max}个字符",max = 100)
|
||||
private String readingCode;
|
||||
|
||||
@ApiModelProperty("待阅状态 0:待阅 1:已阅 d:待阅删除")
|
||||
@NotBlank(message = "待阅状态不能为空" )
|
||||
@Length(message = "待阅状态不能超过{max}个字符",max = 1 )
|
||||
@NotBlank(message = "待阅状态不能为空")
|
||||
@Length(message = "待阅状态不能超过{max}个字符",max = 1)
|
||||
private String readingStatus;
|
||||
|
||||
@ApiModelProperty("待阅状态更新时间")
|
||||
@Length(message = "待阅更新时间不能超过{max}个字符",max = 20 )
|
||||
@Length(message = "待阅更新时间不能超过{max}个字符",max = 20)
|
||||
private String lastUpdateDate;
|
||||
|
||||
@ApiModelProperty("待办类型:1 门户待阅 2 门户流程待办 3 商城待阅")
|
||||
@NotBlank(message = "待阅类型不能为空" )
|
||||
@Length(message = "待阅类型不能超过{max}个字符",max = 1 )
|
||||
@NotBlank(message = "待阅类型不能为空")
|
||||
@Length(message = "待阅类型不能超过{max}个字符",max = 1)
|
||||
private String readingType;
|
||||
|
||||
@ApiModelProperty("待阅产生时间")
|
||||
|
Reference in New Issue
Block a user