7 changed files with 100 additions and 17 deletions
@ -0,0 +1,22 @@ |
|||
package com.elink.esua.epdc.dto.issue.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 议题详情DTO |
|||
* @Author LC |
|||
* @Date 2019/9/9 11:11 |
|||
*/ |
|||
@Data |
|||
public class WorkProcessListFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3193376894926069344L; |
|||
/** |
|||
* 议题ID |
|||
*/ |
|||
@NotBlank(message = "议题ID不能为空") |
|||
private String issueId; |
|||
|
|||
} |
Loading…
Reference in new issue