下载时添加文件名
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.njcn.process.pojo.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description: 问题及工单类
|
||||
* @Param:
|
||||
* @return:
|
||||
* @Author: clam
|
||||
* @Date: 2023/1/5
|
||||
*/
|
||||
@Data
|
||||
public class IssueesAndOrderVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -8022287041427540079L;
|
||||
|
||||
@ApiModelProperty("单位id")
|
||||
private String id;
|
||||
|
||||
@ApiModelProperty("问题个数")
|
||||
private Integer issueesCount;
|
||||
|
||||
@ApiModelProperty("已关联工单数量")
|
||||
private Integer relatedOrderCount;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user