package com.gkhy.sign.dto.req;
|
|
public class SignatureFlowSignReq {
|
|
private Integer itemId;
|
private Long userId;
|
|
private String filePath;
|
|
private Integer status;
|
|
public Integer getItemId() {
|
return itemId;
|
}
|
|
public void setItemId(Integer itemId) {
|
this.itemId = itemId;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public String getFilePath() {
|
return filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
}
|