Commit 9c4fad57 authored by yuanshuo's avatar yuanshuo

更改解析Excel文件代码,新增获取场景列表集合接口

parent 2ba126fc
package com.ruoyi.web.request;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewSceneListRequest", description = "查询场景列表参数")
@Data
public class ReviewSceneListRequest {
@ApiModelProperty("标准细则id")
private String detailsId;
}
package com.ruoyi.web.response;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewSceneListResponse", description = "查询场景列表返回结果")
@Data
public class ReviewSceneListResponse {
@ApiModelProperty("主键-要点id")
private String id;
@ApiModelProperty("要点文本内容")
private String text;
@ApiModelProperty("标准id")
private Long reviewDetailsId;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment