3 changed files with 62 additions and 0 deletions
@ -0,0 +1,48 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import org.hibernate.validator.constraints.Length; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author zhaoqifeng |
||||
|
* @dscription |
||||
|
* @date 2020/8/12 17:52 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectResponseFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -4915724637094689896L; |
||||
|
/** |
||||
|
* 用户Id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
/** |
||||
|
* 项目Id |
||||
|
*/ |
||||
|
private String projectId; |
||||
|
/** |
||||
|
* 流程节点Id |
||||
|
*/ |
||||
|
private String projectProcessId; |
||||
|
/** |
||||
|
* 公开答复内容 |
||||
|
*/ |
||||
|
@Length(max = 1000, message = "公开答复不能超过1000个字符") |
||||
|
private String publicReply; |
||||
|
/** |
||||
|
* 内部流转意见 |
||||
|
*/ |
||||
|
@NotBlank(message = "内部备注不能为空") |
||||
|
@Length(max = 1000, message = "内部备注不能超过1000个字符") |
||||
|
private String internalRemark; |
||||
|
/** |
||||
|
* 项目人员关联表ID |
||||
|
*/ |
||||
|
private String projectStaffId; |
||||
|
/** |
||||
|
* 部门名 |
||||
|
*/ |
||||
|
private String departmentName; |
||||
|
} |
Loading…
Reference in new issue