4 changed files with 53 additions and 4 deletions
@ -0,0 +1,25 @@ |
|||
package com.yxt.anrui.terminal.api.autoservice.invoiced.flowable; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/9/6 18:31 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class SubmitInvoicedInfoDto { |
|||
private static final long serialVersionUID = -7454917532669488852L; |
|||
|
|||
@ApiModelProperty("意见") |
|||
private String comment; |
|||
@ApiModelProperty("流程实例id") |
|||
@JsonProperty("procInsId") |
|||
private String instanceId; |
|||
@ApiModelProperty("任务id") |
|||
private String taskId; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue