11 changed files with 121 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.elink.esua.epdc.dto.epdc.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 移动端通知列表,查询条件 |
||||
|
* |
||||
|
* @author yujintao |
||||
|
* @email yujintao@elink-cn.com |
||||
|
* @date 2019/9/5 19:40 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcNoticeBrowseFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8429642784846512912L; |
||||
|
|
||||
|
/** |
||||
|
* ID |
||||
|
*/ |
||||
|
@NotBlank(message = "通知ID不能为空") |
||||
|
private String noticeId; |
||||
|
} |
||||
Loading…
Reference in new issue