| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Date; |
| | | |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date originateTime; |
| | | |
| | | @NotNull(message = "最初签署人不能为空") |
| | | private Long initiaiUserId; |
| | | @NotBlank(message = "最初签署人不能为空") |
| | | private String initiaiUserId; |
| | | |
| | | @ApiModelProperty(value = "文件路径") |
| | | private String filePath; |
| | |
| | | this.deptId = deptId; |
| | | } |
| | | |
| | | public Long getInitiaiUserId() { |
| | | public String getInitiaiUserId() { |
| | | return initiaiUserId; |
| | | } |
| | | |
| | | public void setInitiaiUserId(Long initiaiUserId) { |
| | | public void setInitiaiUserId(String initiaiUserId) { |
| | | this.initiaiUserId = initiaiUserId; |
| | | } |
| | | |