|
@@ -12,7 +12,7 @@ public class CirculationUser {
|
|
|
private String state;
|
|
|
|
|
|
@ApiModelProperty(value = "审批意见", required = false)
|
|
|
- private String remark;
|
|
|
+ private String remarks;
|
|
|
|
|
|
@ApiModelProperty(value = "审批用户id", required = false)
|
|
|
private Integer userId;
|
|
@@ -46,12 +46,12 @@ public class CirculationUser {
|
|
|
this.state = state;
|
|
|
}
|
|
|
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
+ public String getRemarks() {
|
|
|
+ return remarks;
|
|
|
}
|
|
|
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
+ public void setRemarks(String remarks) {
|
|
|
+ this.remarks = remarks;
|
|
|
}
|
|
|
|
|
|
public Integer getUserId() {
|