后台--病例管理列表显示:新增病例ID、审核通过时间、结算时间(劳务支付时间)
This commit is contained in:
parent
24459c946c
commit
72ffe67384
@ -29,10 +29,11 @@ import java.time.LocalDateTime;
|
|||||||
public class EasyExcelCaseDetailVO {
|
public class EasyExcelCaseDetailVO {
|
||||||
|
|
||||||
@ExcelIgnore
|
@ExcelIgnore
|
||||||
|
@ExcelProperty("病例ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
@ApiModelProperty(value = "专家姓名")
|
@ApiModelProperty(value = "专家姓名")
|
||||||
@ExcelProperty("姓名")
|
@ExcelProperty("专家姓名")
|
||||||
private String expertName;
|
private String expertName;
|
||||||
|
|
||||||
@ApiModelProperty(value = "专家所在省份名称")
|
@ApiModelProperty(value = "专家所在省份名称")
|
||||||
@ -71,8 +72,15 @@ public class EasyExcelCaseDetailVO {
|
|||||||
@ExcelProperty(value = "病例状态", converter = CaseStatusConverter.class)
|
@ExcelProperty(value = "病例状态", converter = CaseStatusConverter.class)
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "审核通过时间")
|
||||||
|
@ExcelProperty("审核时间")
|
||||||
|
private LocalDateTime examineTime;
|
||||||
|
|
||||||
@ApiModelProperty(value = "结算标识")
|
@ApiModelProperty(value = "结算标识")
|
||||||
@ExcelProperty(value = "结算状态", converter = CaseCaseSettlConverter.class)
|
@ExcelProperty(value = "结算状态", converter = CaseCaseSettlConverter.class)
|
||||||
private Integer settlementFlag;
|
private Integer settlementFlag;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "结算时间")
|
||||||
|
@ExcelProperty("结算时间")
|
||||||
|
private LocalDateTime settlementTime;
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user