5 changed files with 68 additions and 1 deletions
@ -1 +1 @@ |
|||||
Subproject commit ede47b0d7ff48024cb935f964e55f235daed82bb |
Subproject commit 9e256b898e3cb3287fe2894b6ee706dac8eb2e2b |
||||
@ -0,0 +1,28 @@ |
|||||
|
package com.elink.esua.epdc.dto.item.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 流程数据通知 |
||||
|
* |
||||
|
* @author zhy |
||||
|
* @date 2022/11/29 10:18 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AcceptProcessNoticeDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 记录唯一标识 |
||||
|
*/ |
||||
|
@NotBlank(message = "唯一标识不可为空") |
||||
|
private String p_recId; |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue