Commit 424bfee8 authored by 宋源硕's avatar 宋源硕

Merge branch 'songyuanshuo' into 'dev'

新增细则、要点代码补充

See merge request !427
parents 4bc87890 ad2353c5
package com.ruoyi.web.request;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewKeyPointListRequest", description = "查询细则列表参数")
@Data
public class ReviewDetailsListRequest {
@ApiModelProperty("标准要求id")
private Long keyPointId;
}
package com.ruoyi.web.request;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewKeyPointListRequest", description = "查询要点列表参数")
@Data
public class ReviewKeyPointListRequest {
@ApiModelProperty("标准要求id")
private Long standardId;
}
package com.ruoyi.web.response;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewKeyPointListResponse", description = "查询细则列表返回结果")
@Data
public class ReviewDetailsListResponse {
@ApiModelProperty("主键-要点id")
private Long id;
@ApiModelProperty("要点文本内容")
private String text;
@ApiModelProperty("标准id")
private Long reviewKeypointId;
}
package com.ruoyi.web.response;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel(value = "ReviewKeyPointListResponse", description = "查询要点列表返回结果")
@Data
public class ReviewKeyPointListResponse {
@ApiModelProperty("主键-要点id")
private Long id;
@ApiModelProperty("要点文本内容")
private String text;
@ApiModelProperty("标准id")
private Long reviewStandardId;
}
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