package com.hotent.bpmModel.params; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * @author qiuxd * @company 广州宏天软件股份有限公司 * @email qiuxd@jee-soft.cn * @date */ @ApiModel(description = "催办任务参数") public class BpmTaskRemindrVo { @ApiModelProperty(name = "instId", notes = "实例ID", required = true) private String instId; public String getInstId() { return instId; } public void setInstId(String instId) { this.instId = instId; } }